J
Jason Rhymes
I posted this in the forms NG but I should of posted it here.
I'm trying to control a group visibility state in a report through a form
pick box.
This is what I have but it doesn't work.
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If [Forms]![JobList]![Show_Detail] = 0 Then
Me.Detail.Visible = True
Else
Me.Detail.Visible = False
End If
End Sub
I'm trying to control a group visibility state in a report through a form
pick box.
This is what I have but it doesn't work.
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If [Forms]![JobList]![Show_Detail] = 0 Then
Me.Detail.Visible = True
Else
Me.Detail.Visible = False
End If
End Sub