Search results

  1. gemma-the-husky

    New Outlook

    I wasn't sure if an anything had changed. Thanks for the replies.
  2. gemma-the-husky

    New Outlook

    Can anyone confirm and circumstances in which access can no longer send emails via outlook. Would upgrading to Windows 11 cause an issue? Would clicking "activate new outlook" cause an issue? I just want to try and identify any likely causes of access no longer sending emails correctly.
  3. gemma-the-husky

    Solved Nz has started throwing up an error message

    You might get that sort of error if you have no records, and a non updatable record set. In that case, all variables are undefined if you will. Is that possible?
  4. gemma-the-husky

    Database inconsistent

    Take backups before trying to fix it. You need to get all users disconnected, then try a C&R. There was a spate of this several years ago, that I don't think was ever really solved.
  5. gemma-the-husky

    Outlook import csv error

    In the code line you posted it has SAddresListName with one s in address. Has that been changed somehow?
  6. gemma-the-husky

    How to distribute an Access app?

    Yes, you don't want unhandled errors but you might need to react differently depending on the actual error, and that is much more difficult to handle, and identify report and resolve the true cause.
  7. gemma-the-husky

    How to distribute an Access app?

    Error handling is not as simple as merely making sure that there are no unhandled errors. Some errors might indicate a dangerous/catastrophic problem that can't be simply recovered from.
  8. gemma-the-husky

    DB behavior is bizarre

    You aren't using a laptop and accidentally moving the mouse with the touch pad, are you? Also mouse behaviour gets erratic as battery power wears out. I get those issues from time to time, although I don't get forms being corrupted without realising it's happening.
  9. gemma-the-husky

    Typical situation 1:1 Superidentities with subidentities

    What on earth do you mean by the above? Are you trying to say you have a master table for persons that appear in other tables? I think I would rather have the duplication by having the same person appear in more than one table, without the master table at all.
  10. gemma-the-husky

    How do I code delete a record from a combo Box with a button

    The thing is, do you want to remove an item from a combo box, or remove the item from the database altogether? These are different things, solved in different ways.
  11. gemma-the-husky

    Microsoft Visual Basic for Applications Compile error: The code in this project must be updated for use on 64-bit systems.

    Am I not right in thinking that merely adding ptrsafe does not guarantee that the code actually works correctly in the different environment? It may depend on what the function actually does.
  12. gemma-the-husky

    Check for a locked record

    It goes back to consideration of your processes. When you say "update an invoice details", or "update notes on a job". Well I imagine the notes should be in a notes table, not in the jobs table. The invoice details should be in an invoice details table not in the job table If you normalise...
  13. gemma-the-husky

    UK Budget 30th October 2024

    Did someone say they had expertise in UK tax. I have a query relating to IHT changes today.
  14. gemma-the-husky

    Check for a locked record

    Yes, but your activities don't necessarily cause problems. Estimators entering different orders/quotes isn't an issue, as the optimistic process doesn't lock a block of records, or indeed any records.. It just re-reads the single record to see if a different user changed it while you were doing...
  15. gemma-the-husky

    Solved Need help with a new user that can't enter data

    If you don't set the trusted flag, you get asked whether you want to open the database each time. I imagine this is there to prevent malware databases opening without approval.
  16. gemma-the-husky

    Check for a locked record

    Having no locks doesn't mean it's a wild west free for all. This all works on the basis that you can have multiple users reading a record. The problem occurs when someone writes a record. What no locks (optimistic locking) means is that access assumes that a write will be successful, but...
  17. gemma-the-husky

    Solved Need help with a new user that can't enter data

    Every day is a learning day. It's a shame it can sometimes take a while to understand the real reason for a problem.
  18. gemma-the-husky

    How to make a large project?

    But this is completely different to choosing an inefficient sorting algorithm. I don't believe it is of any use to consider the question "what will we do if the problem is too complicated for MS Access". We are doing that continually in a microcosm. Occasional we get queries that are too large...
  19. gemma-the-husky

    How to make a large project?

    No 7. Is what I said. The design commissioners and specifiers may not understand the business needs well enough, and may not understand the development possibilities that are available to produce an optimal (or tending to optimal) solution. The developers may not understand the real requirements.
  20. gemma-the-husky

    How to make a large project?

    Well you can give him what looks like he asked for, but design in it a proper normalised way, so that when the client wants more complications you have a framework that enables the growth.
Back
Top Bottom