G
Guest
I want to be able to make a check box invisible on a report if it is unchecked.
I think I may be able to do this through the Detail_Format code section of
the report.
Essentially I want something like this (psuedocode)
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me.FollowUp = Unchecked Then
Me.FollowUp.Visible = False
End If
End Sub
There is no visible property for an element on a report. Can this be done?
Any assistance is appreciated.
I think I may be able to do this through the Detail_Format code section of
the report.
Essentially I want something like this (psuedocode)
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me.FollowUp = Unchecked Then
Me.FollowUp.Visible = False
End If
End Sub
There is no visible property for an element on a report. Can this be done?
Any assistance is appreciated.