H Herfried K. Wagner [MVP] Apr 22, 2005 #3 George Medlock said: What is the code to open a form at the click of a command button? Click to expand... \\\ Dim f As New FooForm() f.Show() /// Showing a form modally: \\\ Dim f As New FooForm() f.ShowDialog() f.Dispose() ///
George Medlock said: What is the code to open a form at the click of a command button? Click to expand... \\\ Dim f As New FooForm() f.Show() /// Showing a form modally: \\\ Dim f As New FooForm() f.ShowDialog() f.Dispose() ///