VB help

Currently reading:
VB help

Joined
Apr 30, 2002
Messages
17,328
Points
2,648
Location
Wrexham
Im doing a very basic program in VB, but i cant think for the life of me how to open and close the forms

I want to be able to click on the button so it opens up another form and closes down the previous one

Any ideas cause its got me stumped :eek:
 
form.hide
form.show

unload(me) unloads the current object
usage

unload "frmForm1"
unload me

also form.show loads an object so there is no need to use the load keyword
 
Back
Top