May 13, 2004 12:20
Private Sub Command1_Click()
Dim response As String
response = MsgBox("Go to form 2?", vbYesNoCancel, "Practice")
If response = vbYes Then
Form2.Show
ElseIf response = vbNo Then
Form3.Show
ElseIf response = vbCancel Then
End If
End Sub