private void tsbRequest_Click(object sender, EventArgs e) { FrmSqlEditor.ConnectAttr connAttr = this.connsAttr[_selectedBase]; FrmSqlEditor frmSqlEditor = new FrmSqlEditor(connAttr); frmSqlEditor.MdiParent = this; frmSqlEditor.Show(); frmSqlEditor.WindowState = FormWindowState.Maximized; }
private void ofdSqlScript_FileOk(object sender, CancelEventArgs e) { FrmSqlEditor frmSqlEditor = new FrmSqlEditor(_selectedBase, ofdSqlScript.FileName); frmSqlEditor.MdiParent = this; frmSqlEditor.Show(); frmSqlEditor.WindowState = FormWindowState.Maximized; }