Search results

  1. bob fitz

    Relationships and Tables conundrums

    Forgive me if I've misunderstood you, but when you create/edit a relationship in the relationship window, you are presented with a dialog box that allows you to set referential integrity.
  2. bob fitz

    Tooltip with textbox when hovering over label

    Not sure about graphics or Active X labels but for native Access controls you can set the "ControlTip Text" property of the control using the Other tab of the property sheet.
  3. bob fitz

    code to close my current form on pressing the button to open my Main Menu

    Have you tried: DoCmd.Close acForm, "FrmFrontEnd" DoCmd.OpenForm "FrmEmployees", acNormal
  4. bob fitz

    code to close my current form on pressing the button to open my Main Menu

    I think that the OP is a new member. Perhaps he doesn't realise how helpful it might be ;)
  5. bob fitz

    code to close my current form on pressing the button to open my Main Menu

    Perhaps try: DoCmd.OpenForm "frmFrontEnd" Also, the "acSaveNo" in the following line is not required DoCmd.Close acForm, Me.Name, acSaveNo
  6. bob fitz

    code to close my current form on pressing the button to open my Main Menu

    try stepping through the code As far as I can see "stLinkCriteria" has no value
  7. bob fitz

    Solved How do I jump to the next matching item when typing in a combobox?

    Why not sort it by the appropriate column?
  8. bob fitz

    Solved bible database

    If you look at the backend db you posted, you will see that none of the tables has a PK. Anyway, since you have marked the thread as solved it's a moot point.
  9. bob fitz

    Solved bible database

    As far as I can see, none of your tables have a Primary Key and you have no relationships defined
  10. bob fitz

    Solved bible database

    You could zip it and then post the zip file
  11. bob fitz

    Solved bible database

    I see nothing attached to your post
  12. bob fitz

    Solved bible database

    You could do, but you've already posted everything (forms, queries and modules) from the frontend db
  13. bob fitz

    Solved bible database

    Create a new db, then import the tables from the backend db that your frontend db is linked to.
  14. bob fitz

    Solved bible database

    Your posted db uses LINKED tables but there's no tables in the db file
  15. bob fitz

    Solved bible database

    I thought you might have spoilt us and included the tables
  16. bob fitz

    Solved bible database

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

    Solved Caculate the business day based on date time field

    I don't think my original suggestion gave the desired results when the time was 03:00 am Don't understand why you are making comments on the use of Now() function. I haven't used it:unsure:
  18. bob fitz

    Solved Caculate the business day based on date time field

    I've looked at this again. The following works for me: =IIf(Hour([BusinessDatetime])*60+Minute([BusinessDatetime])<=180,[BusinessDatetime],[BusinessDatetime]+1)
  19. bob fitz

    Solved Caculate the business day based on date time field

    Try: =IIf(Hour([BusinessDatetime])<=3,DateValue([BusinessDatetime])+1,DateValue([BusinessDatetime])) as the Control Source of [businessday]
  20. bob fitz

    my first form

    Can you post a copy of your db
Back
Top Bottom