After trying the compact and repair, it does nothing other than make the database smaller. I tried the checkbox again and it came up with the same message.
Going to Debug>Compile makes the same "Compile Error" message appear.
The references seem fine; I've followed the quick solution (don't really understand anything else :confused: )
But when I try to use the checkbox, I get the message:
"Compile Error: Method or data member not found"
It takes me back to VB and highlights
Private Sub Member_Click()
I've still...
This is when I enter it into OnClick:
Private Sub Member_Click()
If Me.Member = True Then
Me.Member_ID.Enabled = True
Me.tbl_Appointment_First_Name.Enabled = False
Me.tbl_Appointment_Surname.Enabled = False
Me.tbl_Appointment_Contact_Number.Enabled = False
Else
Me.Member_ID.Enabled = False...
I want to enable/disable certain fields when a checkbox is ticked. I have put in the following coding in the "After Update" bit but it doesn't seem to work. Am I putting it in the wrong place or is just because my coding just really bad?
If Me.Member = True Then
Me.Member_ID.Enabled = True...