想鸟一样飞翔

专注于php开发。对c++也很有兴趣!!!

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 ··· 3 4 5 6 7

2007年9月28日

摘要: http://blog.csdn.net/yefanqiu 阅读全文
posted @ 2007-09-28 16:15 redfox 阅读(134) 评论(0) 推荐(0) 编辑

2007年9月16日

摘要: 假设定义的记录名为myres Dim myexcel As New Excel.Application Dim mybook As New Excel.Workbook Dim mysheet As New Excel.Worksheet Set mybook = myexcel.Workbooks.Add '添加一个新的BOOK Set mysheet = mybook.Worksheets.... 阅读全文
posted @ 2007-09-16 18:29 redfox 阅读(545) 评论(1) 推荐(0) 编辑

2007年8月13日

摘要: Dim conn As ADODB.Connection Dim myrec As ADODB.Recordset Dim adopre As ADODB.Parameter Dim cmd As ADODB.Command Set conn = New ADODB.Connection Set myrec = New ADODB.Recordset ... 阅读全文
posted @ 2007-08-13 12:04 redfox 阅读(556) 评论(0) 推荐(0) 编辑

2007年8月9日

摘要: 创建Excel,把数据存入Excel Private Sub ComExport_Click() Dim xlApp As New Excel.Application Dim xlBook As New Excel.Workbook '定義Excel工作簿對象 Dim... 阅读全文
posted @ 2007-08-09 22:10 redfox 阅读(1548) 评论(0) 推荐(0) 编辑

摘要: 存储过程如下create proc sp_recordset @bbb int as select * from aaa where bbb = @bbbvb代码如下: Dim cmd As ADODB.Command Dim conn As ADODB.Connection Dim rs As ADODB.Recordset Dim ADOPrm Set ADOPrm = ... 阅读全文
posted @ 2007-08-09 21:50 redfox 阅读(512) 评论(0) 推荐(0) 编辑

2007年8月6日

摘要: 这是一个好东东 阅读全文
posted @ 2007-08-06 22:24 redfox 阅读(212) 评论(0) 推荐(0) 编辑

摘要: winapi函数介绍 GetPrivateProfileString VB声明 Declare Function GetPrivateProfileString& Lib ... 阅读全文
posted @ 2007-08-06 22:15 redfox 阅读(7772) 评论(1) 推荐(1) 编辑

摘要: 1。经常出现的写法 在VB中实现对数据库的访问,我们可能会通过一个全局函数来实现,例如以下的代码: Public Function DBSqlOpen(strName As String, strPWD As String, _ strIP As String, strDatabase As String) As ADODB.Connectio... 阅读全文
posted @ 2007-08-06 22:07 redfox 阅读(485) 评论(0) 推荐(0) 编辑

2007年6月18日

摘要: 为了解决客户在安装产品的过程中使用MS SQL SERVER数据库可能出现的由于端口号而无法连接数据库的问题。 问题分析 SQLServer数据库特有的1433端口号配置不当或被操作系统屏蔽,故而连接不上数据库。 解决方案首先检查1433端口号是否配置正确:从左下角的"开始"进入。。。。。。最后找到"服务器网络实用工具" 到"TCP/IP"后并选中,点击[属性]出现下面对话框: 如[默认端口]不... 阅读全文
posted @ 2007-06-18 19:34 redfox 阅读(3322) 评论(0) 推荐(0) 编辑

2007年6月10日

摘要: private void btnBackUp_Click(object sender, System.EventArgs e) { if(rtbBack.Text.Trim() ==string.Empty ) { MessageBox.Show("必须输入备注","提示",MessageBoxB... 阅读全文
posted @ 2007-06-10 11:19 redfox 阅读(414) 评论(0) 推荐(0) 编辑

摘要: public static string MD5Encrypt(string pToEncrypt, string sKey) { DESCryptoServiceProvider des = new DESCryptoServiceProvider(); byte[] inputByteArray = Encoding.Default.GetBytes(p... 阅读全文
posted @ 2007-06-10 11:18 redfox 阅读(531) 评论(1) 推荐(0) 编辑

2007年6月8日

摘要: vs.net在新建工程时弹出"Automation 服务器不能创建对象"的解决方案 很多朋友都遇上过vs.net这个——编辑器有在新建工程时,弹出"Automation 服务器不能创建对象",然后就停住了。 大部分人以为是IE解析xml文件时的那个错误,事迹却不是,无奈的答案是:重装vs.net都没有作用,最后重新装操作系统才将这个问题解决。 ... 阅读全文
posted @ 2007-06-08 20:41 redfox 阅读(336) 评论(1) 推荐(0) 编辑

2007年6月3日

摘要: 方法一, 重写 ProcessCmdKey 方法: protected override bool ProcessCmdKey(ref Message msg, Keys keyData) { if(keyData == Keys.Enter ) { SendKeys.Send("{Tab}"); ... 阅读全文
posted @ 2007-06-03 19:05 redfox 阅读(204) 评论(0) 推荐(0) 编辑

2007年5月14日

摘要: 现在写的代码老是发现类与类之间的衔接处理的不好。请教了一下高手,他建议我学习《设计模式》。开始学习 阅读全文
posted @ 2007-05-14 15:32 redfox 阅读(161) 评论(0) 推荐(0) 编辑

2007年5月5日

摘要: 这两天一直被一个问题困扰着,就是 我用一个combox显示数据,并根据用户的选择,触发SelectedIndexChanged事件完成一些操作,但是当用combox数据绑定到一个dataset时就触发了SelectedIndexChanged事件,请教如何在数据绑定时不让combox控件触发SelectedIndexChanged事件, 本来想设个Flag变量,判断是不是第一次登录,... 阅读全文
posted @ 2007-05-05 20:22 redfox 阅读(871) 评论(1) 推荐(0) 编辑

2007年5月4日

摘要: 今天终于有了自己的窝!!!高兴~!!! 阅读全文
posted @ 2007-05-04 14:55 redfox 阅读(154) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7