|
-
Jun 13th, 2003, 10:03 PM
#1
Thread Starter
Lively Member
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
-
Jun 13th, 2003, 10:16 PM
#2
Sleep mode
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 .
-
Jun 13th, 2003, 10:23 PM
#3
Thread Starter
Lively Member
i just figured it out...
i had tried that method, but it was trying to close a different instance of the form, so i made a class, and it seems to be working. Yay!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|