Doesn anyone else find some of the MSDN library poorly written?
So far i have read the thing about multiple forms about 10 times, and i still cant figure out how to do what they are trying to explain... they jump between variables and stuff, and they dont explain why they declare stuff as they do...
im trying to figure out how to open a new instance and then close it, and i cant seem to pull it out of that article
:(
Re: Doesn anyone else find some of the MSDN library poorly written?
Is this what you are talking about ?
VB Code:
Dim frm1 as new form1
frm1.show
this instantiate an object from form1 and use Show method to show the form .
to close it , just do this
but it has to be other than the startup form of the project .