Search results

  1. P

    Using a checkbox to disable/enable fields

    Yep, I live in the UK; and would I be right in guessing you're in Colorado?
  2. P

    Using a checkbox to disable/enable fields

    Afternoon RuralGuy, Thanks for the help, I see it now! *feels stupid*
  3. P

    Using a checkbox to disable/enable fields

    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.
  4. P

    Using a checkbox to disable/enable fields

    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...
  5. P

    Using a checkbox to disable/enable fields

    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...
  6. P

    Using a checkbox to disable/enable fields

    That's what I've been doing but it still doesn't work.
  7. P

    Using a checkbox to disable/enable fields

    It says that it can't find the macro "If Me"
  8. P

    Using a checkbox to disable/enable fields

    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...
Back
Top Bottom