Example #1
0
 private void dataAsnafFrmToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (FrmEditorCDASNAF.IsDisposed)
     {
         FrmEditorCDASNAF           = new EditorCDASNAFFrm();
         FrmEditorCDASNAF.MdiParent = this;
         FrmEditorCDASNAF.Show();
     }
     else
     {
         if (FrmEditorCDASNAF.Visible)
         {
             FrmEditorCDASNAF.WindowState = FormWindowState.Normal;
             FrmEditorCDASNAF.Focus();
         }
         else
         {
             FrmEditorCDASNAF.MdiParent = this;
             FrmEditorCDASNAF.Show();
         }
     }
     FrmEditorCDASNAF.Icon = FXFW.SqlDB.MakeIcon(global::SchoolStore2.Properties.Resources.dataAsnafFrm, 16, false);
 }