Search results

  1. C

    Subforms not updating properly

    I'd already got the requery line in the correct place, and I knew that the master/child link properties were correct as well, hence me posting here - I'd run out of ideas. After an hour of getting nowhere I created a new form with the two subforms on it and they worked fine, checked all the...
  2. C

    Subforms not updating properly

    I have a tab control on my form. One page has contact details for a company, the other has assignment details. Each company can have more than one contact, and more than one assignment. I have put a subform on each page so as the one-to-many relationship can be shown. However it will only...
  3. C

    Requerying Listboxes

    I've tried OnChange() as well (sorry for not including that in my original post). In all of those events for some reason the textbox contains a nullvalue (even though it has a character is typed in it)...it's as if the event is generated just before the character is displayed on screen - very...
  4. C

    Requerying Listboxes

    I'm trying to filter the records displayed in a list box based on what a user types in a textbox next to it. Although I can get it to work using the AfterUpdate() method of the text box I'd like it to requery after each letter is typed in the text box. I've tried putting the same code in...
  5. C

    Creating a function to add records to tables

    What I have at the moment is a command button that has code in the On_Click procedure that adds a new record to a given table and populates it with values from text boxes on the form. Because I am adding records to different tables through different forms then the same code structure is...
Back
Top Bottom