Search results

  1. A

    Open form resets a list box

    Hi all, I'm a bit stumped on a problem - I have an access routine that works through a list box and opens up a form for each entry to update the record. Trouble is that once the form has been opened and edited, the list box then resets, so I can only update one at a time - here's the code...
  2. A

    Cannot assign a value

    Hi all, We've just upgraded to Office 365 and I've had a puzzling error come up in one of my forms. There's a part of Form_Current routine that display an error only when a the form is first opened: Private Sub Form_Current() If Me.NewRecord = False Then Me.cmbCustomer.SetFocus...
  3. A

    Self taught amateur

    Hiya - been working on (simple) databases for about 10 years now - no training, just picked up pieces here and there. Deffo don't understand SQL!
  4. A

    Record matching

    I have a main table using [Con_Num] as the primary key (using autonumber) with a sub table linked to the table using [Con_Num]. In my sub table I have two fields : [LNum] & [LText] I'm trying to design validation form using a query, from the main table with a join to the sub table. The bit I'm...
  5. A

    Passing parameters to a report

    I'm trying to work out how to print a number of labels depending on data in my table. I have a report set up using a select query, but how do I send data through VBA to the report. I have a table "tblCartons" which has multiple records linked to my table "tblShipLists" by the primary key...
  6. A

    Multiple use of Autonum

    I'm a bit stuck on a problem with autonumber - i have two tables set up, one for a report and another which is a subform for actions on that report. The report has an autonumber set, but i want to set an autonumber for the actions, but always starting at 1 on each new report. i.e. Report 1 -...
Top Bottom