D
Dave Elliott
both textboxes are on the main form; Pay and Bal
Code is being run on the current event of main form
right now the label show up when Pay is zero and Bal is zero
Pay should not be zero, but Bal is ok to be zero
Pay Textbox=[FPaymentSub].[Form]![Payment]' currency format
Bal Textbox=[FPaymentSub].[Form]![Balance]' currency format
If (IsNull(Pay) = False) And (Bal) = 0 Then''Label455.Visible = True
Else
Label455.Visible = False
End If
Code is being run on the current event of main form
right now the label show up when Pay is zero and Bal is zero
Pay should not be zero, but Bal is ok to be zero
Pay Textbox=[FPaymentSub].[Form]![Payment]' currency format
Bal Textbox=[FPaymentSub].[Form]![Balance]' currency format
If (IsNull(Pay) = False) And (Bal) = 0 Then''Label455.Visible = True
Else
Label455.Visible = False
End If