Search results

  1. bob fitz

    Solved Make new contact list, have assets autopopulate to that contact

    I wonder if the OP ever did read the link that Minty offered regarding cross-posting :unsure: 👋👋
  2. bob fitz

    Solved Make new contact list, have assets autopopulate to that contact

    The url for what and where did you try to post it?
  3. bob fitz

    Solved Make new contact list, have assets autopopulate to that contact

    If you could be bothered to read the links that Minty supplied, you might have more success.
  4. bob fitz

    Calculate Days Between Records

    Sounds like a job for DateDiff() function: https://learn.microsoft.com/en-us/office/vba/language/reference/user-interface-help/datediff-function To be of more help we'll need to know something of your table.
  5. bob fitz

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

    I shall remember the name "bmaccess".
  6. 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".
  7. bob fitz

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

    Post a copy of the db
  8. bob fitz

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

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

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

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

    Is Not

    Try <> instead
  11. bob fitz

    Cannot view report - error 2501

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

    Cannot view report - error 2501

    can you open other reports in Preview
  13. 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.
  14. bob fitz

    Data Entry form - Report?

    Can't see why the solution offered wouldn't work. Post a copy for us to look at.
  15. 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.
  16. bob fitz

    Copy a Num Feld to an other Form

    what are the forms called?
  17. 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
  18. 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
  19. bob fitz

    Limit Datasheet to ONE entry

    Are you sure?
Back
Top Bottom