Search results

  1. 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.
  2. bob fitz

    Data Entry form - Report?

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

    Copy a Num Feld to an other Form

    what are the forms called?
  5. 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
  6. 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
  7. bob fitz

    Limit Datasheet to ONE entry

    Are you sure?
  8. 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.
  9. bob fitz

    CALL UP CONTROL ON SUBFORM

    Perhaps you can post a copy of the db
  10. 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.
  11. bob fitz

    DateDiff Query without weekends

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

    DateDiff Query without weekends

    I had no GroupBy clause either
  13. bob fitz

    DateDiff Query without weekends

    Can you post a copy o the db
  14. bob fitz

    Solved Problem with search and filter

    I notice that you are using "Lookups" in your tables which can lead to problems. See: http://access.mvps.org/access/lookupfields.htm
  15. bob fitz

    DateDiff Query without weekends

    Perhaps you could use a query to calculate the count of weekdays. Something like: SELECT Count(YourTableName.FieldNameToCount) AS NumOfWDays FROM YourTableName WHERE (((YourTableName.YourDateFieldName) Between [Start Date] And Date()) AND ((Weekday([YourDateFieldName]))<>1 And...
  16. bob fitz

    Solved Archive old records

    You could add a "LeavingDate" date field to one of your tables.
  17. bob fitz

    What's your best/worst joke?

    What's that all about?
  18. bob fitz

    updating tables

    Cross-Posted: https://www.accessforums.net/showthread.php?t=88649 Please read: https://excelguru.ca/a-message-to-forum-cross-posters/
  19. bob fitz

    I want a solution to the problem of creating relationships between tables

    Search YouTube for videos on: "access table relationships". There are lots of them. Here's one I found:
  20. bob fitz

    I want a solution to the problem of creating relationships between tables

    I would advise against the use of Lookup fields in tables. See: http://access.mvps.org/access/lookupfields.htm
Back
Top Bottom