如何用C#来部署数据库__教程 |
|
日期:2007-5-9 18:49:54 人气:206 [大 中 小] |
|
|
|
this.btnCreateDB.TabIndex = 6; this.btnCreateDB.Text = "&Create DB"; this.btnCreateDB.Click += new System.EventHandler(this.btnCreateDB_Click); // // frmCreateDB // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(306, 175); this.Controls.Add(this.btnCreateDB); this.Controls.Add(this.txtPassword); this.Controls.Add(this.label3); this.Controls.Add(this.txtUserName); this.Controls.Add(this.label2); this.Controls.Add(this.txtServerName); this.Controls.Add(this.label1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.Name = "frmCreateDB"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Create DB"; this.ResumeLayout(false); } #endregion ///<summary> /// The main entry point for the application. ///</summary> [STAThread] static void Main() { Application.Run(new frmCreateDB()); } private void btnCreateDB_Click(object sender, System.EventArgs e) |
|
出处:本站原创 作者:佚名 |
|
|