Search results

  1. Y

    Keeps creating new records!

    What about DoCmd.OpenForm "Appointments", , , "[customer]='" & customer & "'" This limits the form to display only those for the customer. In the "All" properties for the form, dont allow additions or deletions. Since each customer only has one appointment, the appointment data should be in...
  2. Y

    Dynamically referencing controls

    Thanks, it worked a charm!
  3. Y

    Dynamically referencing controls

    There was no other way to describe this. Imagine 10 text boxes Text1 Text2 Text3 etc.... Now imagine you want to set the text of a text box based on a loop. Variable = 1 ["Text" & Variable] = "sometext" Variable = Variable + 1 This does not work. Can somebody please...
Back
Top Bottom