예제 #1
0
        private void buttonItem16_Click(object sender, EventArgs e)
        {
            Autentificare aut = new Autentificare();

            aut.ShowDialog();
            aut.Dispose();
            aut.Focus();
        }
예제 #2
0
 private void MainForm_Activated(object sender, EventArgs e)
 {
     if (aut.enter == false)
     {
         aut.enter = true;
         aut.ShowDialog();
         aut.Dispose();
         aut.Focus();
     }
     labelItem1.Text = aut.user;
     labelItem2.Text = DateTime.Today.ToLongDateString();
 }
예제 #3
0
파일: MainForm.cs 프로젝트: evelinad/MedLAB
 private void buttonItem16_Click(object sender, EventArgs e)
 {
     Autentificare aut = new Autentificare();
     aut.ShowDialog();
     aut.Dispose();
     aut.Focus();
 }