'___________________________________________________________ ' USING MULTIPLE FORMS ' MAIN FORM ' Created 8/14/06 for C# 2005 '___________________________________________________________ 'This is the main form and is shown as a dialog or modal form when they click on the button from 'the splash form. 'Notice the new Namespace for 2005: "My". This is a very handy new feature which makes it a cinch to 'use multiple forms and get info from one form to another. This is a huge improvement from C#2003!!!! Public Class frmMain Private Sub ExitToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ExitToolStripMenuItem.Click '---remember to close the splash screen. It was hiding in RAM! My.Forms.Splash.Close() Me.Close() End Sub Private Sub AboutRonsStoreToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AboutRonsStoreToolStripMenuItem.Click My.Forms.frmAbout.ShowDialog() End Sub End Class