Form

kimstanely

New member
Joined
Mar 3, 2005
Messages
3
Programming Experience
1-3
hi I have a question, in vb.net i created a login form when you login then another form opens. but the problem is the previous form does not close.
If anybody has a solution please help!!

Thanks
Kim
 
Thanks

but it didn't work, when i click the logn button it closes the login form but it doesn't open the next form.
 
Last edited:
thanks for the reply and the aticle


I have 5 forms,if you have an email address i can send you the file.It would be a great help.
 
if you want to open form x, you just need to declare form x and open form x in the form you want to open from. Such as, you are on form y and want to open form x

dim fx as new formx
fx.open()
me.close()

from form x you want to open form z

dim fz as new formz
fz.open()
fx.close()

and so on.


If it doesn't work, you can send me you file at cachua9@temple.edu be sure tell me what form you want to open and from what form.
Good luck
 
Back
Top