private void btnShowSQL_Click(object sender, EventArgs e) { if (!ValidateInput()) { MessageBox.Show(errorMsg, Common.APPNAME, MessageBoxButtons.OK, MessageBoxIcon.Error); return; } ShowSQL sSQL = new ShowSQL(); sSQL.SQL = BuildCreateSQL(); sSQL.ShowDialog(); }
private void btnShowSQL_Click(object sender, EventArgs e) { if (!ValidateInput()) { Common.ShowMsg(ErrorMessage); return; } ShowSQL sSQL = new ShowSQL(); sSQL.SQL = BuildSQL(); sSQL.ShowDialog(); }