Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by AapBanaan

  1. AapBanaan

    Creating an edit-button to unlock forms in Access

    Your code works Remou. Finally I can get to work on the rest of the form. Thanks a lot!
  2. AapBanaan

    Creating an edit-button to unlock forms in Access

    Still doesn't work. For the button click event, this is now my code: Private Sub Knop2_Click() Dim ctl As Control For Each ctl In Me If ctl.Type = acTextBox Then Me.ctl.Locked = False End If Next ctl End Sub I get an error in this line: If ctl.Type = acTextBox Then and...
  3. AapBanaan

    Creating an edit-button to unlock forms in Access

    I'll give it a whirl in the morning. Thanks for the tips sofar
  4. AapBanaan

    Creating an edit-button to unlock forms in Access

    I've been trying for 2 days straight to get Access to creat a simple 'edit' button, which changes the status of all fields in the form to .AllowEdits = true. I read the FAQ, and used the code provided there, but it just won't work. I've set all fields to locked in the properties window, and I...

Part and Inventory Search

Back
Top