摘要: 1,MDI窗体设有两个窗体frmMain,frmChild,则:frmMain: 设IsMdiContainer属性为true打开子窗口: 在相关事件中写如下代码: frmChild child=new frmChild(); child.MdiParent=this;//this表示本窗体为其父窗体 child.Show(); 在打开子窗体时,如果只允许有一个子窗体,可以加入如下判断: if (this.ActiveMdiChild!=null) { this.ActiveMdiChild.Close(); //关闭已经打开的子窗体 //.... }更改MDI主窗体背景先声明一个窗体对象pr 阅读全文
posted @ 2011-04-28 18:05 许明吉博客 阅读(492) 评论(0) 推荐(0) 编辑
摘要: 1:添加命名空间System.Data.SqlClient中的SQL Server访问类;2:与SQL Server数据库建立连接,ADO.NET提供Connection对象用于建立与SQL Server数据库的连接 string connectionStr = "server=服务器名;database=数据库名;uid=用户名;pwd=密码"; ///定义连接字符串 SqlConnection connection1 = new SqlConnection (connectionStr); ///实例化Connection对象用于连接数据源 connection1.Op 阅读全文
posted @ 2011-04-28 18:04 许明吉博客 阅读(4577) 评论(0) 推荐(0) 编辑