Search results

  1. bob fitz

    Solved How do I move to a new record automatically in a subform

    I think everybody should be able to see now. Remember the saying, "Abandon hope all ye who enter here".
  2. bob fitz

    Solved How do I move to a new record automatically in a subform

    Post a copy of the db
  3. bob fitz

    Solved How do I move to a new record automatically in a subform

    You're missing two commas: DoCmd.GoToRecord , , acNewRecord
  4. bob fitz

    Solved How do I move to a new record automatically in a subform

    Can you post a copy of the db
  5. bob fitz

    Is Not

    Try <> instead
  6. bob fitz

    Cannot view report - error 2501

    Does the report open ok if you use: DoCmd.OpenReport "rpt3", acViewPreview in the Immediate Window
  7. bob fitz

    Cannot view report - error 2501

    can you open other reports in Preview
  8. bob fitz

    Data Entry form - Report?

    Perhaps the record needs to be saved before the report is opened. EDIT: Something like: If Me.Dirty = True Then Me.Dirty = False End Ifbefore the line that opens the report.
  9. bob fitz

    Data Entry form - Report?

    Can't see why the solution offered wouldn't work. Post a copy for us to look at.
  10. bob fitz

    Copy a Num Feld to an other Form

    Try: Forms![YourFormName].[YourTextboxName] = Me.ActiveControl in the AfterUpdate event of the second textbox. Substitute YourFormName with the name of the first form. Substitute YourTextboxName with the name of the first textbox. Both forms will need to be open.
  11. bob fitz

    Copy a Num Feld to an other Form

    what are the forms called?
  12. bob fitz

    Limit Datasheet to ONE entry

    I believe it can be done by setting the AllowAdditions property of the subform using the events that I spoke of in post#7 and also in the main forms on current event. See attached
  13. bob fitz

    Limit Datasheet to ONE entry

    Have you tried using the sub form controls on enter event and the after update event to test or an entry
  14. bob fitz

    Limit Datasheet to ONE entry

    Are you sure?
  15. bob fitz

    Solved Archive old records

    Not sure what you want a sample of but MS has a Student template file. Post a copy of your db if you want an example of how you might flag a record.
  16. bob fitz

    CALL UP CONTROL ON SUBFORM

    Perhaps you can post a copy of the db
  17. bob fitz

    DateDiff Query without weekends

    With a better understanding of the requirement I also tried the function way, as suggested by Gasman. My version of it is attached.
  18. bob fitz

    DateDiff Query without weekends

    So, I'll ask again. Can you post a copy of the db.
  19. bob fitz

    DateDiff Query without weekends

    I had no GroupBy clause either
  20. bob fitz

    DateDiff Query without weekends

    Can you post a copy o the db
Back
Top Bottom