Search results

  1. bob fitz

    What can we learn from The Doc Man and people like him

    Ah! They don't call me "tinkle-toes" either. Full Stop!!
  2. bob fitz

    What can we learn from The Doc Man and people like him

    Probably not as well as you :ROFLMAO:
  3. bob fitz

    access forms events not working

    Post a copy of your db
  4. bob fitz

    access forms events not working

    Is that the only event that isn't working? Is the event property set to [Event Procedure]
  5. bob fitz

    Write Conflict Error

    Is your db split, with each user having their own front-end and each front-end linked to tables in a single back-end file?
  6. bob fitz

    Comparing and highlighting records between two subforms

    Without wishing to be pedantic and for the sake of that clarity, what you have said is correct but take the following into account: If the body that issues a cert were to change the length of time a cert is valid for from, then you would need to create a new entry in "CertListT" rather than edit...
  7. bob fitz

    Comparing and highlighting records between two subforms

    If CertificationDate is the date that the Cert was issued then it might be better to NOT have an ExpiresOn field in a table but have that date calculated in the query. It is usually considered to be better to do the calculation whenever and wherever it is required than to store it in a table.
  8. bob fitz

    Comparing and highlighting records between two subforms

    I think that would work but you might need to check the length of Cert Validity AS WELL as the checking for Null in CourseID2. Perhaps a 3rd conditional rule. Post back if you need more help :)
  9. bob fitz

    Comparing and highlighting records between two subforms

    I've just had an afterthought. Won't you need to take into consideration the length of time that a certificate is valid for? I noticed a field called "ValidFor". Would I be correct in assuming that this holds the number of days that the certificate is valid for? Do you need to indicate in the...
  10. bob fitz

    Comparing and highlighting records between two subforms

    Always pleased to help if I can ;)
  11. bob fitz

    Comparing and highlighting records between two subforms

    Not sure that I've understood the requirement but see attached:
  12. bob fitz

    Dropdown Combo box with Sub Headings

    So how many products are in the list and how large will it need to become before you decide to structure things properly by creating a "ProductType" related to the "Products" table
  13. bob fitz

    Reference a field created in same query

    Perhaps your criteria should be in a different column
  14. bob fitz

    Solved How to insert data at one go in both the parent table and child table in Microsoft Access

    Nector Perhaps you just need to change the "Data Entry" property of the main form from Yes to No
  15. bob fitz

    Solved Top values for unique records

    Glad to help if I can. Be sure to test well wit more data.
  16. bob fitz

    Solved Top values for unique records

    Try: SELECT Max(YourTableName.SeatimeID) AS MaxOfSeatimeID, YourTableName.CrewID, Last(YourTableName.JoinDate) AS LastOfJoinDate, Last(YourTableName.LeaveDate) AS LastOfLeaveDate FROM YourTableName GROUP BY YourTableName.CrewID ORDER BY Max(YourTableName.SeatimeID);
  17. bob fitz

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

    I've certainly not offered any solution. All I've offered is some advice on cross-posting.
  18. bob fitz

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

    You may be correct about "new posters", I can't remember that far back anymore :ROFLMAO: Not so sure about the need for new glasses though. In post #12 at: https://www.accessforums.net/showthread.php?t=88955 he said, "Okay thank you, you are awesome. You saved me lol, what did you change so I...
  19. bob fitz

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

    I never realized that you were such an optimist ;)
  20. bob fitz

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

    I notice that Minty managed it. I always use copy/paste to show a link here. It's never let me down.
Back
Top Bottom