Search results

  1. S

    Check Child Records if check box selected

    I have a table of people (subscribers table - primary key subscriberID). Each subscriber can have multiple addresses (address table - Primary Key AddID and foriegn key SubID). I want to note which address I should ship a book to in the month of May each year, so in the address table there is a...
  2. S

    Count Records in a subform

    I have a form (Family) that has a subform (children). On the main form, the is a next button, previous button and a combo box that allows a user to navigate to a specific family. I need to be able to know how many children there are when I navigate to a record. I have tried a few options that...
  3. S

    Repaint not working

    I have an unbound form. There are two text boxes on the form, one for TotalRecords and the other for CurrentRecord. When I click the start button a process starts where I append records to a table (that part is working fine). Since this process can take a long time (10 minutes or so), I want...
  4. S

    Run code after text box is calculated.

    I have a client that does not want to use the Access navigation buttons. Instead wants to have toggle buttons. On the subform there can be up to 6 children. I have set up the buttons and have the code to turn them on or off as I move from child to child. I have created a subroutine I call...
  5. S

    Updating a subform field

    I have an unbound text box called ChildCount on a subform. It's code is =count(*). When I add a new record in the subform, it does not update. I have tried to add Me!ChildCount.requery to the code that adds a new record, but that doesn't seem to work. If I move to a new family (main form)...
Top Bottom