Search results

  1. norman

    limiting query results using VBA

    Hi Rhonda I understand your problem of not being able to post the whole database. Just one question, are the queries which bring in the sheets and project numbers append or update ? (Your last response said append) Regards Norman
  2. norman

    limiting query results using VBA

    Hi Rhonda I have tried running your form, I cannot get any duplicates without running it more than once. Of interest though, your results table contains data in the 'sheets' and 'project number' fields yet these do not appear in any of the append queries. Also the questions table contains a...
  3. norman

    More problems with reports and forms - And macros

    Hi I have attached a small database which should get you started. Open the form members and go to the record you wish to print 1. Click on the 'id' field and the report will open with that record. 2. Click on the 'Title' field, the reoprt will also open with that record. 1 uses the DoCmd...
  4. norman

    embedding a font in access

    Try this link http://www.mentalis.org/tips/tip068.shtml HTH:)
  5. norman

    URGENT! Data Lookup

    If you use search for "Cascading Combo Boxes" there are a number of replies which have attached samples on this. HTH Norman
  6. norman

    password/login

    Mike This is one I used for a database, it might get you started. HTH Norman
  7. norman

    2501 error

    I am using Access 97 and cannot find this error, can you be more specific. Norm
  8. norman

    Getting Access to calculate Exam grades

    A very similar question was asked during the lasweek. Use search with 'grades' as the keyword and limit the search to 1 week or newer. The thread was by Armin . HTH Norman
  9. norman

    add a yes/no field to a table in code

    Function tbalter() Dim mysql mysql = "ALTER TABLE yourtablename ADD yournewfieldname yesno;" DoCmd.RunSQL mysql End Function Note that this code has no error trapping and is very basic Search help for alter table command for more info HTH Norman
  10. norman

    combo box to select a report to show

    Put Jack's code in and then In the after update event of the combo box Dim rptname rptname = Me![yourcomboname] DoCmd.OpenReport rptname, acViewPreview If you want to print directly use acviewnormal HTH Norman
  11. norman

    Me.textbox.Enabled ?!?

    Hi Set the visible property of RoomType to 'no' In the after update event of the combo/list box or button, whatever is triggering the next stage If Me![YourCombo or listbox]= yourcondition Then Me!RoomType.Visible = True End If HTH Norman
  12. norman

    LookUp Box in Form

    Hi You can find a good example of this in the sample database "orders". The orders form has a combo box which concatenates the first and last names of the sales person and uses the query qrysalesperson to do this HTH Norman
  13. norman

    query problems

    Create a query on the table containing the two fields lets say 'a' and 'b' For the first field 'a' you can get the total by w:sum(a) Seconfd field 'b' the total would be x:sum(b) In the next column y:w-x Substitute your field names for a & b, you can call w & x & y anything you like...
  14. norman

    exit without updating

    Theprez Thanks for that, it's a lot easier than the access help method!
  15. norman

    exit without updating

    cadillac search access help for 'dirty' I think this will do what you're looking for Norman
  16. norman

    Retrieving Random records from table or query

    Hi i think that it needs a space before the W of where and also before the O of order Norman
  17. norman

    auto fit to screen forms

    Anauz, Copy of the code would be appreciated Thanks Norman
Back
Top Bottom