latex88
Registered User.
- Local time
- Today, 14:57
- Joined
- Jul 10, 2003
- Messages
- 198
I am having the toughest time with the if...then statement. It seems simple enough but I always get compiling error when I include "Else" in my statements and I don't understand why. Please help. What is wrong with the below statement?
Private Sub CmdFinish_Click()
If IsNull(txtOrderType) = True Then MsgBox ("You must select an Order Type First")
Else
Call FinishOrder
End If
End Sub
Private Sub CmdFinish_Click()
If IsNull(txtOrderType) = True Then MsgBox ("You must select an Order Type First")
Else
Call FinishOrder
End If
End Sub