i have a program with many forms in it and everytime i click to go to a new form, the old form is still there. the new form comes up and is active but i don't want the first form to be showing. is this done in code?
Printable View
i have a program with many forms in it and everytime i click to go to a new form, the old form is still there. the new form comes up and is active but i don't want the first form to be showing. is this done in code?
Form1.Hide
- or -
Unload Form1
;)VB Code:
Private Sub Command1_Click Unload Me Form2.show
EDIT: Oh MartinLiss was faster...:rolleyes:
EDIT2: MartinLiss edited and put unload form1 too! :P
so i would use these commands when i am programming the command buttons?
ok nevermind i got it many thanx to both of u.