I ran into another problem when i used the end command on the form so when you click Return to Main it should close the form and open the first form.
Printable View
I ran into another problem when i used the end command on the form so when you click Return to Main it should close the form and open the first form.
the end statement will end the program. If you want to just hide a form and show another form you could....
form2.hide
form1.show
or unload form2 if your done with it
thanks :)