G
Gulf Coast Electric
My Main form is named TimeCards and it has a sub-form on it named
TimeCardPaymentSub
on this sub-form it has a (2) text boxes.
The text box (Balance) shows how much the customers balance is
The text box (OrderAmtA) show the original Invoice amount.
I need the code to display a message box if the customer overpays
The balance would show a negative amount if this happened
The code below does not work?
If (Balance) > (OrderAmtA) Then
MsgBox "Credit Invoice is Needed, Customer Has Overpaid"
End If
TimeCardPaymentSub
on this sub-form it has a (2) text boxes.
The text box (Balance) shows how much the customers balance is
The text box (OrderAmtA) show the original Invoice amount.
I need the code to display a message box if the customer overpays
The balance would show a negative amount if this happened
The code below does not work?
If (Balance) > (OrderAmtA) Then
MsgBox "Credit Invoice is Needed, Customer Has Overpaid"
End If