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