fellowcheng

无可奈何花落去

博客园 首页 新随笔 联系 订阅 管理

01 2005 档案

摘要:mainMenu触发两次form_sizechange事件: 如果在设计模式下点击窗体的属性->事件->SizeChanged来自动生成窗体的事件(也就是在系统自动生成的InitializeComponent()方法中写入 this.SizeChanged += new System.EventHandler(this.frmMain_SizeChanged);),同时如果窗体中有一个main... 阅读全文
posted @ 2005-01-21 13:22 乌鸦 阅读(1923) 评论(0) 推荐(0)

摘要:跟踪数据连接池状态的方法: http://www.yesky.com/SoftChannel/72342380484755456/20020930/1633376_2.shtml 监视链接池化 要监视应用程序对链接池化的应用情况,可以使用随SQL Server发行的Profiler工具,或随微软Windows 2000发行的性能监视器。 要利用SQL Server Profiler ... 阅读全文
posted @ 2005-01-20 15:57 乌鸦 阅读(635) 评论(0) 推荐(0)

摘要:/* 因为收集了许多C#编程方面的小技巧,为了便于查看,便做了这个小程序 */ //操作TreeView,生成文件目录树 using System; using System.IO; using System.Windows.Forms; using System.Collections; namespace codeView { /// /// loadFiles 的摘要说明。 /... 阅读全文
posted @ 2005-01-14 13:35 乌鸦 阅读(1394) 评论(0) 推荐(0)

摘要:在网上收集的一些代码 一、增加COMBOBOX列: //在网格控件中增加一列为下拉列表框 DataGridTableStyle dgdtblStyle = new DataGridTableStyle(); dgdtblStyle.MappingName = dtlList.TableName; dataGridIn.TableStyles.Add(dgdtblStyle)... 阅读全文
posted @ 2005-01-08 10:23 乌鸦 阅读(1379) 评论(0) 推荐(0)