K
Kirk P.
I've got this code that runs when I open the Group Changes report. When
txtTermDate is null, it does make the text box invisible. But the label
still remains visible. What's the deal?
Private Sub Report_Open(Cancel As Integer)
If IsNull(Me!txtTermDate) Then
Me.txtTermDate.Visible = False
Me.lblTermDate.Visible = False
End If
End Sub
txtTermDate is null, it does make the text box invisible. But the label
still remains visible. What's the deal?
Private Sub Report_Open(Cancel As Integer)
If IsNull(Me!txtTermDate) Then
Me.txtTermDate.Visible = False
Me.lblTermDate.Visible = False
End If
End Sub