会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Nextsoft
But how could you live and have no story to tell!
访问统计
NextSoft
But how could you live and have no story to tell!
首页
新随笔
联系
订阅
管理
文章分类 -
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)