View Single Post
Old Apr 19th, 2005, 11:38 AM   #7
ctor
Newbie
 
Join Date: Apr 2005
Location: Germany
Posts: 6
Rep Power: 0 ctor is on a distinguished road
Well actually Ooble's 'Form2.Show' cant work as long as you havent a static/shared method in your class 'Form2' called 'Show'.

You have to call 'Show' from a created instance of the class 'Form2'. I think its in VB.NET something like this:
Dim formInstance As Form2 = New Form2 // class member
formInstance.Show() // call this in a method
__________________
I dont care if it works on your machine, we are not shipping your machine.
ctor is offline   Reply With Quote