G
Guest
I am trying to write a simple command. If the field "time test" is 0, I don't want a lable to show up. Unfortunately, I keeping getting the error "you have entered an expression that has no value". The "tiem test" control is a numeric text box. Following is my code:
Private Sub Report_Open(Cancel As Integer)
If TimeTest = 0 Then
LblTotalDue.Visible = False
End If
End Sub
Thanks in advance!
Private Sub Report_Open(Cancel As Integer)
If TimeTest = 0 Then
LblTotalDue.Visible = False
End If
End Sub
Thanks in advance!