J
Jim Mac Millan
Hello,
I am putting together a report and would like the "label" (Label88)
visible only when data is in the "text box" (Style_Name). I have placed the
code below.
- - - - - - - - - - -
Private Sub Report_Open(Cancel As Integer)
If Me.Style_Name.Data = "" Then Label88.Visible = False Else
Label88.Visible = True
End Sub
- - - - - - - - - - -
I get a Run-time error that the Object doesn't support this property or
method with the following line highlited (If Me.Style_Name.Data = "" Then)
Any Ideas?
Thanks
Jim M M
I am putting together a report and would like the "label" (Label88)
visible only when data is in the "text box" (Style_Name). I have placed the
code below.
- - - - - - - - - - -
Private Sub Report_Open(Cancel As Integer)
If Me.Style_Name.Data = "" Then Label88.Visible = False Else
Label88.Visible = True
End Sub
- - - - - - - - - - -
I get a Run-time error that the Object doesn't support this property or
method with the following line highlited (If Me.Style_Name.Data = "" Then)
Any Ideas?
Thanks
Jim M M