Example #1
0
 private void mnuIstoricTranzactii_Click(object sender, EventArgs e)
 {
     if (tNumeCont.IsDisposed || tNumeCont == null)
     {
         tNumeCont      = new NumeCont();
         tNumeCont.Text = "Introduce numarul contului pentru a vizualiza tranzactiile";
         tNumeCont.Show();
     }
     else
     {
         tNumeCont.Text = "Introduce numarul contului pentru a vizualiza tranzactiile";
         tNumeCont.Show();
     }
 }
Example #2
0
 private void mnuDepunere_Click(object sender, EventArgs e)
 {
     if (dNumeCont.IsDisposed || dNumeCont == null)
     {
         dNumeCont      = new NumeCont();
         dNumeCont.Text = "Introduce numarul contului pentru a depune";
         dNumeCont.Show();
     }
     else
     {
         dNumeCont.Text = "Introduce numarul contului pentru a depune";
         dNumeCont.Show();
     }
 }
Example #3
0
 private void mnuRetragere_Click(object sender, EventArgs e)
 {
     if (rNumeCont.IsDisposed || rNumeCont == null)
     {
         rNumeCont      = new NumeCont();
         rNumeCont.Text = "Introduce numarul contului pentru a retrage";
         rNumeCont.Show();
     }
     else
     {
         rNumeCont.Text = "Introduce numarul contului pentru a retrage";
         rNumeCont.Show();
     }
 }
Example #4
0
 private void AfiseazaInformatiiPersonaleToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (cNumeCont.IsDisposed || cNumeCont == null)
     {
         cNumeCont      = new NumeCont();
         cNumeCont.Text = "Introduce numarul contului pentru a vizualiza informatiile personale";
         cNumeCont.Show();
     }
     else
     {
         cNumeCont.Text = "Introduce numarul contului pentru a vizualiza informatiile personale";
         cNumeCont.Show();
     }
 }