I have 2 forms in an application. Form1 has a command button on it. If the user clicks command 1, Form2 needs to be shown and form 1 dissapear. What code do I put in the command button?
Thanking you in advance
Printable View
I have 2 forms in an application. Form1 has a command button on it. If the user clicks command 1, Form2 needs to be shown and form 1 dissapear. What code do I put in the command button?
Thanking you in advance
See older topic on 'objects on other forms'
Just in case you didn't get the soln from the older topic pointed by nicovb,
Dim f2 as new form2()
f2.show()
me.close()