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); } }
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); } }