sirmilt
09-04-2003, 11:21 AM
I am thoroughly confused.
I bring up a message box when form 1 is complete, with the following code. When the user makes an entry on form 2, form form 3 should appear
Dim intResponse As Integer
intResponse = MsgBox("Are there any special commission
arrangements for this dealer?", 36, "Commission
Adjustments")
If intResponse = 6 Then
Form2.Show
End If
When I execute the code, the message box comes up fine, the intResponse variable shows 6 but form 2 doesn't show.
I can't see anything wrong with this simple bit of code except that it doesn't work, what did I mess up?
I bring up a message box when form 1 is complete, with the following code. When the user makes an entry on form 2, form form 3 should appear
Dim intResponse As Integer
intResponse = MsgBox("Are there any special commission
arrangements for this dealer?", 36, "Commission
Adjustments")
If intResponse = 6 Then
Form2.Show
End If
When I execute the code, the message box comes up fine, the intResponse variable shows 6 but form 2 doesn't show.
I can't see anything wrong with this simple bit of code except that it doesn't work, what did I mess up?