But how could you live and have no story to tell!
访问统计 original graphics

文章分类 -  Windows Mobile开发

操作SQL Server Mobile数据库的常用C#代码(转载)
摘要:1. 创建数据库 // 创建数据库 File.Delete("Test.sdf"); SqlCeEngine engine = new SqlCeEngine( "Data Source='Test.sdf';LCID=1033;Password=\"s$;2'!dS64\";Encrypt=TRUE;"); engine.CreateDatabase(); 2. 验证和修复数据库 /... 阅读全文
posted @ 2007-12-05 08:54 nextsoft 阅读(341) 评论(0) 推荐(1)
PPC(Pocket PC)中显示二进制数组(byte[])类型的图片
摘要://给数组赋值,这里用的是通过WebService返回的二进制数组 byte[] img = MyService.GetImg(textBox1.Text); MemoryStream ms = new MemoryStream(img); Bitmap bt = new Bitmap(ms); pictureBox1.Image = Image.FromHbitmap(bt.GetHbitmap... 阅读全文
posted @ 2007-11-26 19:13 nextsoft 阅读(354) 评论(0) 推荐(1)