what code do u need to link forms together?
Printable View
what code do u need to link forms together?
What do you mean when you say "link forms together"?
to call another form from a button
if form1 if showing but add a button Command1
Private Sub Command1_Click()
form1.hide 'this will hide the form1
form2.show 'this will make form2 appear
End Sub