Search results

  1. S

    Solved Option Explicit?

    "Don't make me (the user) think!" This is powerful and valid design principle for UX design. To declare a variable before use, you must think about its name and type in advance. This slows down inexperienced users quite a bit and regarding the type they may not have a clue. Of course...
  2. S

    Filter property or sql Where? OrderBy property or sql Order by?

    It's not working on an in memory recordset but fetching the data anew from the source. @Josef P. explained it already in much detail and supplied evidence supporting these explanations. You're just stubbornly reiterating your incorrect assumptions and refuse to either acknowledge the provided...
  3. S

    Filter property or sql Where? OrderBy property or sql Order by?

    No sure whether you agree with me or not. Anyways, the behavior is the same with local (ACE/JET) tables and with ODBC linked tables.
  4. S

    Filter property or sql Where? OrderBy property or sql Order by?

    It doesn't. That is indeed a problem in such a scenario. However, if it is about security/permissions, I would integrate restricting the records in the underlying query, preferably on a database server.
  5. S

    Filter property or sql Where? OrderBy property or sql Order by?

    And what do you feel is the problem with that?
  6. S

    Solved DCount Date field for duplicates giving Error#

    You are not using the proper delimiters for a date: #
  7. S

    If ANY libraries are missing from the references, the date() function won't work.

    The order in the list of references in the dialog also depicts the priority of the references. Moving a library, which might be potentially missing, to the lower end of the list will reduce, but not eliminate, the risk of this causing problems with functions from other libraries.
  8. S

    Solved Read Outlook pst file without desktop Outlook installed

    Which zip? You must download the XstReader.zip from the releases section, not a zip of the source code.
  9. S

    Misleading Grouping Claim

    Strictly speaking the documentation is correct and precise. If you actually deal with an container control, its child controls will be on the container control, not in it. - Microsoft is using this terminology consistently. I agree that the wording in the documentation has some potential to...
  10. S

    Why is this not working?

    An universal problem with text delimiters inside the delimited text. So, rather beware to pass on raw user text input with adequate preprocessing.
  11. S

    Future of Access

    No doubt, they did. If they would do the same for Excel and Word, you can expect this to be multiplied by 1000. And keep in mind: The transition to "New Outlook" is nowhere near completion. Most organizations depending on Outlook automation won't have switched to New Outlook yet.
  12. S

    Future of Access

    I'm not aware of any plan for this. I'm sure they would like to do that. However, VBA usage in Word and Excel is probably a thousand times more common than in Outlook. So, for now they cannot do anything like this without antagonizing a huge number of their customers.
  13. S

    Program1 works fine, program2 doesn't, due to a date problem, but code inside are the same

    It's actually not. Best use the ISO date format because it is universally unambiguous for computers and for developers.
  14. S

    Future of Access

    No. If that were the reason, they could have just disabled or removed VBA/Automation in/of Outlook. The primary reason is that there are three different editions of Outlook (desktop/web/mobile) with completely different code bases. For calendar and tasks there are even more. This creates huge...
  15. S

    Solved Use Windows Authentication for several Access FE's to connect to SQL Server backend

    Yes. No, of course not. How should users have different permissions if their permissions are defined by a single AD Group. You need to create one AD Group for every set of permissions.
  16. S

    Program1 works fine, program2 doesn't, due to a date problem, but code inside are the same

    Were the ODBC tables relinked on PC2 for one of the applications but not the other? Did you check the data type of REGISTRATION_DATE in the table in Access? Are they the same in both applications? Does it make a difference if you explicitly relink the tables on PC2?
  17. S

    Why is this not working?

    While I also think single quotes are better for SQL, this was not the problem you were dealing with. Look at the criterion value from your original post: It's hard to see, so lets format this with a non-proportional font: "Microsoft*'" -> There is an single quote at the end, which is part of...
  18. S

    SQL Anywhere 17 some tables show #deleted via ODBC

    It was Sybase SQL Anywhere for ~20 years before SAP bought them. Review all options in the ODBC driver configuration dialog whether there is something related to BigInt. There was a "Keys in SQL Statistics" option required for Access according to some documentation. - However, it doesn't seem...
  19. S

    SQL Anywhere 17 some tables show #deleted via ODBC

    Relink the Sybase tables. Configuration changes affecting ODBC linked tables usually only become active after the tables are relinked with the new configuration.
  20. S

    Closing Form Instances

    This should still be correct. Can you provide a reproducible example were it fails? Just send a WM_CLOSE message to the form window.
Back
Top Bottom