上一页 1 ··· 10 11 12 13 14
摘要: 首先,察看"windows installer服务"的状态,如果是停用,开启服务就可以。 不行的话再实施第二步,使用记事本编写installer.reg文件,内容如下: Windows Registry Editor Version 5.00 (这个地方好像必须要空一行) [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSIS... 阅读全文
posted @ 2007-01-18 21:06 yongwnet 阅读(1779) 评论(4) 推荐(0) 编辑
摘要: [关键字]DB2 .Net OleDb ODBC TTLB 在.NET应用软件开发人员看来,使用DB2与使用其它任何其它关系数据库没有区别。人们可以看到无数使用SQL Server以及甲骨文公司产品执行数据库任务的例子,但关于使用包括.NET在内的微软公司技术访问DB2数... 阅读全文
posted @ 2007-01-17 19:28 yongwnet 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 第一种方案DBC.NET解决方案 MyODBC Driver优点: 兼容性好, 易于使用缺点: 运行效率差, 原因是架构包含太多层架构:ODBC.NET应用程序 <->ODBC.NET Provider <-> MYSQL ODBC 启动 <-> MYSQL API<-> MYSQL 服务器安装步骤:1, 下载安装最新的.NET FRAMEWORK2... 阅读全文
posted @ 2007-01-17 19:27 yongwnet 阅读(3941) 评论(0) 推荐(0) 编辑
摘要: 一 下载 到http://dev.mysql.com/downloads/mysql/5.0.html winddows downloads(platform notes) Windows Essentials (x86) ... 阅读全文
posted @ 2007-01-14 18:23 yongwnet 阅读(1877) 评论(3) 推荐(0) 编辑
摘要: Private Sub TextBox1_KeyDown()Sub TextBox1_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyDown If e.KeyCode = Keys.Escape Then ... 阅读全文
posted @ 2007-01-14 14:26 yongwnet 阅读(389) 评论(0) 推荐(0) 编辑
摘要: winform中,listview是没有办法设置行高的,没行之间排得密密麻麻的,很不好! 可以加入一个imagelist来 撑大 行,实现行高的设置! // 设置行高 20 ImageList imgList = new ImageList(); imgList.ImageSize = new Size(1, 20);//分别是宽和高 ... 阅读全文
posted @ 2007-01-14 14:17 yongwnet 阅读(6698) 评论(4) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14