Hi,
This is driving me crazy.
I have a report (let call it Report1) with the following code:
Private Sub Report_Activate()
If Me.Memo = "CONTRACT TYPE: INDIVIDUAL" Then
Me.Check39 = False
Me.Check51 = True
Me.Label49.Visible = False
Me.Text37.Visible = False
Else
Me.Check39 = True
Me.Check51 = False
Me.Label49.Visible = True
Me.Text37.Visible = True
End If
End Sub
Report1 works fine and the code does what I want it to do but the code does not work if I made it subreport of another report.
Thanks in advance
This is driving me crazy.
I have a report (let call it Report1) with the following code:
Private Sub Report_Activate()
If Me.Memo = "CONTRACT TYPE: INDIVIDUAL" Then
Me.Check39 = False
Me.Check51 = True
Me.Label49.Visible = False
Me.Text37.Visible = False
Else
Me.Check39 = True
Me.Check51 = False
Me.Label49.Visible = True
Me.Text37.Visible = True
End If
End Sub
Report1 works fine and the code does what I want it to do but the code does not work if I made it subreport of another report.
Thanks in advance