Search results

  1. M

    Multiple sub form problem

    If you can't share the database for any reason, can you at least show us a mockup with description of what you need?
  2. M

    Favorite Quotes

    Back on topic.... "Everyone wants to be Cary Grant. Even I want to be Cary Grant" - Cary Grant.
  3. M

    Fictional Stories

    Down side is most news organizations are in business to make money. They do so by providing content people want to read, see, or listen to. They post "True" items that support the narrative their customers want. Do a quick search for "Pulitzer vs. Hearst" to see a bit of the history of selling...
  4. M

    Adding values when importing data

    To add to Doc's answer, your table with companies should not contain a calculated value. Employees belong in their own table separate from companies. Depending on your business needs, you would either have employees be a child table to companies OR you would use an intermediary table that links...
  5. M

    AI Options

    AI is trying to determine if love is exo or endothermic.
  6. M

    Favorite Quotes

    @ Doc, Mark Twain also said “Anyone who can only think of one way to spell a word obviously lacks imagination.” 😁
  7. M

    Favorite Quotes

    Youth and exuberance will NEVER overcome old age and treachery...
  8. M

    Favorite Quotes

    I GROK IN FULLNESS.
  9. M

    New Avatar

    Two of you over there making fun of me cuzz I'm startin to look like one of them there long haired hippies!
  10. M

    Solved Where string

    Something to keep in the back of your head. When you have multiple criteria you can also create a set of matching queries to UNION. Query 1 returns all transactions with Cleared = False Query 2 returns all transactions between a date range. Query 3 returns all transactions for client who has an...
  11. M

    New Avatar

    Your reminding me I need a haircut...
  12. M

    The Lenten Season Is Upon Us

    I tried that last year. My D&D players just could NOT get into a game facing optimized humans! 😁😁😁
  13. M

    How to handle these oversmart Stupids?

    Ask him "If you want that, why not just do it yourself and save the money?". Then start sending him pictures of things YOU want and ask "Can you make this for me, but for less?".
  14. M

    What's your best/worst joke?

    Politicians in California have decided that, when applying to a nursing program, applicants are asked both "Do you speak a language other than English?" and "Is this a language of the African Continent?". I know people who would answer "No" and "Yes" as they grew up in South Africa!
  15. M

    Solved Updating a table with a value from a mainform when a subform updates

    Please note, Genre can be very fluid. The same song will be listed under multiple genres, depending on who is asking.
  16. M

    Solved Updating a table with a value from a mainform when a subform updates

    As a bit of a purist, I'd suggest having a many to many relationship between records Tbl_Music and Tbl_Artist. This will allow you to track which artists performed on a track even when the "Album" doesn't list them. Purist in this case is for the music, not database theory. ☺ For media, that...
  17. M

    Solved Form "Losing colours" - nVidia Card Installed

    To add to Doc's comment, in the video settings you can also select number of colours. I remember this because one user had set theirs to (iirc) 16, then wondered why all pictures looked horrid. Could be a very quick first check.
  18. M

    self-referencing table with bridge

    As a line entry, normally you have amount, credit account, and debit account. Is there a reason not to go this way?
  19. M

    Solved A normalisation question

    I think you can answer this as soon as you look at real world situations in your industry. How often do you have a case where a bottom level item (bolt, nut) is also assembled as "Bolt and Nut". How often do you then use "Bolt and Nut" in a larger sub-assembly? How often does this larger...
  20. M

    Weird VBA / Query Behavior

    If you need to verify each record before deciding if you insert, I'd suggest having a counter that not only shows how many records have been processed, but also allows you to DoEvents every 10 or 20 inserts. If your computer acts sluggish, you can DoEvents more often. If not, you can see if...
Back
Top Bottom