private void MainForm_Load(object sender, EventArgs e) { LoginForm form = new LoginForm(); if (form.ShowDialog() == DialogResult.Cancel) { this.Close(); return; } // timer secondTimer.Start(); try { Global.Load(); } catch (Exception ex) { MessageBox.Show(ex.Message); this.Close(); return; } // default action. btnReal_Click(this, null); }
private void MainForm_Load(object sender, EventArgs e) { LoginForm form = new LoginForm(); if (form.ShowDialog() == DialogResult.Cancel) { this.Close(); } }