Ejemplo n.º 1
0
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         //Splash code
         frmSplash objSplash = new frmSplash();
         objSplash.MdiParent = this;
         objSplash.Show();
     }
     catch (Exception objException)
     {
         MessageBox.Show(objException.Message);
     }
 }
Ejemplo n.º 2
0
 private void frmMain_Load(object sender, EventArgs e)
 {
     try
     {
         //Splash code
         frmSplash objSplash = new frmSplash();
         objSplash.MdiParent = this;
         objSplash.Show();
     }
     catch (Exception objException)
     {
         MessageBox.Show(objException.Message);
     }
 }