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
Leave a comment
Comments 4
Today, I learnt the difference between form.hide and Unload Me. Ehe, 'unload me', i need to start using that in random conversations.
Reply
Reply
Reply
Reply
Leave a comment