Beispiel #1
0
 private void aDDMoneyOnBankAccountToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (anbi == null)
     {
         anbi             = new AddNewBankInformation();
         anbi.MdiParent   = this;
         anbi.FormClosed += anbi_FormClosed;
         anbi.Show();
     }
     else
     {
         anbi.Activate();
     }
 }
Beispiel #2
0
 void anbi_FormClosed(object sender, FormClosedEventArgs e)
 {
     anbi = null;
 }