private void menu_agenda_click(object sender, EventArgs e) { //restart_window(); this.Visible = false; agenda a = new agenda(); a.ShowDialog(); this.Close(); }
private void OKButton_Click(object sender, EventArgs e) { string username = UsernameBox.Text; string passwd = PasswordBox.Text; bool x = Login.verify(username, passwd); if (x) { //MessageBox.Show("Succes "); //ManageAgenda.get_datatable(); this.Visible = false; agenda a = new agenda(); a.ShowDialog(); this.Close(); } else { MessageBox.Show("Numele sau parola sunt gresite.\nReincercati"); } }
private void restart_window() { this.Visible = false; agenda a = new agenda(); a.ShowDialog(); this.Close(); }