//Management private void selectToolStripMenuItem_Click(object sender, EventArgs e) { sqlCommand = String.Empty; SelectForm sqlSelectForm = new SelectForm(this); sqlSelectForm.ShowDialog(); if (!String.IsNullOrEmpty(sqlCommand)) { textBoxSQLcommand.Text = sqlCommand; executeThreadRunSqlCommand(sqlCommand); } }
private void buttonReportSelectGenerate_Click(object sender, EventArgs e) { SelectForm sqlSelectForm = new SelectForm(this); sqlSelectForm.ShowDialog(); }