Search results

  1. S

    Sync Combo Boxes repeating through every record

    Hi, I had a look and changed tables, relations, form, recordsources and vba... The problem was partly in the table structure and the relations with foreign keys etc. In the form itself there were similar problems and the dropdown boxes needed to be bound, set up and a bit of coding!~)
  2. S

    Filter dropdown of subform based on field in parent form.

    Here's a quick example... and there's some other samples on my website!~) Just remember if you want to reference a form from the vba editor, then the form has to have the form property 'Has Module' = True
  3. S

    Open Dialog Box

    It's a problem testing without doing a bit of development and I'm strapped for time, so I'll rewrite your solution instead... Create a module and enter the following: Public Function BravisImport() DoCmd.TransferText acImportDelim, "Bravis Importspecifikation", "Bravis import"...
  4. S

    Open Dialog Box

    Det er bare ok!~)
  5. S

    Open Dialog Box

    Is it possible that you can upload a copy so I can have a look when I get a moment!~)
  6. S

    Clear selections in list box based on another list box

    Private Sub lstSupplier_Click() Me.lstCustomer = null Me.lstCustomer.Requery End Sub
  7. S

    relationship design diffs

    If you open qry ProjectRecordsStagesOfficers and click on the grey area then you get the property sheet for the query. Change recordset type from Dynaset to Dynaset (Inconsistent Updates)
  8. S

    relationship design diffs

    Sorry I was looking at all that cross posting stuff and lost track!~) I will have a quick look..
  9. S

    relationship design diffs

    If you upload your db we can have a look at it!~)
  10. S

    Using access for our theatrical company's archives and history

    A good start would be to start entering the data in an Excel spread sheet. That will help you enter the data in an uniform way which is needed in a database. Later it's easily changed into an database. In Excel you make the first row the headings and then when you enter data keep the format...
  11. S

    how to finalise a database.

    ..if you don't want the tabbed version but the form size you designed, then set document window options to overlapping windows...
  12. S

    how to finalise a database.

    file>options>current database: 1. Display form (chose your form) 2. Display Navigation Pane (untick) 3. Track name AutoCorrect info (untick) If you want to get back into the design view, hold down shift when you open the database.
  13. S

    Question Crash Course on Access?

    Do you know about designing a relationsdiagram on a piece of paper?
  14. S

    Copying field values between forms

    ...by the way before this works you have to go to design view on HarvestInfo and set HasModule to true...
  15. S

    Copying field values between forms

    You create a button and cancel the wizard. Right click on your button and get to the code generator. Enter the following: private sub NameOfYourButton_Click() docmd.openform "HarvestInfo" form_harvestinfo.CID = me.CID form_harvestinfo.Permit = me.Permit end sub I have presumed that the fields...
  16. S

    Form/Chart: Can anyone get rid of this 'Sum Of'?

    In your case you can doubleclick on the sumofincome box and the table appears. Then just change the columnheadings in the table!~)
  17. S

    Date format with forward and back slashes

    format recognizes mm, dd and yyyy if you want to enter characters not recognized you put \ in front of it and format will just "print" it... So in your example TxtStartDate would become #mm/dd/yyyy# and the #'s is showing it's a date, like "text" or 'text' and in this case #date#. Therefore you...
  18. S

    Question Conversion from 1997 to 2010 and Issues

    I deleted the message... it was incorrect I just tested... I have had the same issue and solved it in the query and I don't know if the situation Bob is describing was at large. The report was showing that little funny square when I tried to call a function!~)
  19. S

    Question Conversion from 1997 to 2010 and Issues

    Resolve it in the query!~)
  20. S

    Only Second Column in ComboBox Query Will Populate on Form

    The suggestions are implemented in the attached db!~)
Back
Top Bottom