|
-
Dec 12th, 2002, 10:55 PM
#1
Thread Starter
Member
Close and Open a New Form
Hi,
My Application has two forms.
A database logon form and a application form.
After loggin on to the database, I want to close the logon and open the application.
Now I can close the logon form by me.close(), but for thwe life of me, I can't find how to open the other form.
Thoughts?
Last edited by SThornton; Dec 12th, 2002 at 11:02 PM.
-
Dec 12th, 2002, 11:01 PM
#2
forms are just classes, so you have to declare an instance ....
VB Code:
dim frm as new SecondForm()
frm.show()
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Dec 12th, 2002, 11:06 PM
#3
Thread Starter
Member
Hi,
Yep that got it.
Thanks
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
|