E
Emma Aumack
Hi all,
I have a couple of fields on a form that are disabled. I need to be able to
allow the user to filter on these fields when they use Access "Filter by
Form". However, when select "filter by form" they remain disabled.
I have tried putting this code in the "On Current" of the form but it looks
like I'm missing the boat here. Little help please?
If Me.FilterOn = True Then
Me.Job_ID.Enabled = True
Me.Date_Entered.Enabled = True
Else
Me.Job_ID.Enabled = False
Me.Date_Entered.Enabled = False
End If
I have a couple of fields on a form that are disabled. I need to be able to
allow the user to filter on these fields when they use Access "Filter by
Form". However, when select "filter by form" they remain disabled.
I have tried putting this code in the "On Current" of the form but it looks
like I'm missing the boat here. Little help please?
If Me.FilterOn = True Then
Me.Job_ID.Enabled = True
Me.Date_Entered.Enabled = True
Else
Me.Job_ID.Enabled = False
Me.Date_Entered.Enabled = False
End If