Esempio n. 1
0
 void anbi_FormClosed(object sender, FormClosedEventArgs e)
 {
     anbi = null;
 }
Esempio n. 2
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();
               }
           }