Search results

  1. bob fitz

    running total using sum does not work

    Can you give us some detail of what your data is about and the need of these calculations. Perhaps a screen shot of your relationships as well. To me, your reference to cells smacks of at db designed like a spreadsheet.
  2. bob fitz

    Solved Restrict Data Entry

    Can you post a copy of the db, or at least show us a picture of its' relationship window.
  3. bob fitz

    Wi-Fi Calling – Game Changer for Remote Areas

    Nor on my A13. When I have a poor mobile signal and I'm calling a mobile number, I make the call with WhatsApp. It even allows me to call abroad for free :)
  4. bob fitz

    Simple warehouse data entry

    There's a host of references suggested in this post: https://www.accessforums.net/showthread.php?t=65220
  5. bob fitz

    Simple warehouse data entry

    I have no wish to offend you. I am only trying to help. IMHO what you have posted is an Access file but it is not a database; You have some tables but none have Primary Keys. You have no Relationships. There are Look Up fields in tables. Spaces in the Names given to some objects. I think...
  6. 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.
  7. 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.
  8. 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
  9. 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 ;)
  10. 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
  11. 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
  12. bob fitz

    Solved How to make a form to enter multiple entries in table with same form

    JarryE said: I'm a little bit confused. If you think you have a good and functional design why would you not ask why the comment has been made? The file you posted in post #7 is indeed, an Access file. However, IMHO it can not be argued that it has a good and functional design. For example...
  13. 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?
  14. 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.
  15. 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
  16. bob fitz

    Solved bible database

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

    Solved bible database

    I see nothing attached to your post
  18. bob fitz

    Solved bible database

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

    Solved bible database

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

    Solved bible database

    Your posted db uses LINKED tables but there's no tables in the db file
Back
Top Bottom