D
Donna
What's wrong with this code? Access 2007
I want the label to be invisible also if the value of the text box is null.
Private Sub Report_Load()
Dim strRpt As String
If Me.ReadingList.Value Is Null Then
Me.ReadingList.Visible = False
Else
Me.ReadingList.Visible = True
End If
I want the label to be invisible also if the value of the text box is null.
Private Sub Report_Load()
Dim strRpt As String
If Me.ReadingList.Value Is Null Then
Me.ReadingList.Visible = False
Else
Me.ReadingList.Visible = True
End If