Search results

  1. S

    Pop-up message when converting Access report to PDF

    Are they? The process of generating a PDF from an Access report is a pretty specific operation. I doubt there is a Windows dialog that shows up for this without any control from within Access. (I mean Access from Microsoft's perspective, not ours.)
  2. S

    Differences in date management between Win10 and Win11

    Thank you, that's indeed interesting. It's quite peculiar that there are many reports about financial software like DATEV and SFirm being affected, but not much else. I would have expected a much wider variety of reports considering that the problem should affect many (all?) ODBC drivers.
  3. S

    Differences in date management between Win10 and Win11

    The solutions are either don't use it or use a driver fully supporting it. - I don't think this is applicable here, as it is the very same driver in both scenarios.
  4. S

    Differences in date management between Win10 and Win11

    In absence of any better idea, I would recommend to turn on ODBC Trace and review the generated log file to find out whether the problem arises because Access submits the date in a different format or whether the ODBC driver interprets an unchanged date format differently.
  5. S

    Query Not Visible When Connecting to Excel

    Will not change the situation. The problem is that only functions natively implemented in the JET/ACE-Engine are available in queries from external applications (Excel in this case). Any function in an external library or written in VBA cannot be "seen" by the query engine when not run in Access...
  6. S

    Solved Variable not defined in sql string

    You are enclosing some of the references to A.Something in text delimiters ('). These terms will be treated as literals and not as references to table columns. Only discrete text and date literals should be enclosed in delimiters.
  7. S

    VBA - How to save in csv one of multiple worksheets in excel file.

    That often does not help. If a column's type is automatically detected and then there is data in a row beyond those read for auto-detection that does not match the detected type, a type conversion error will occur just while Access/ACE is reading the file for import. I would probably link to...
  8. S

    If there is no unique code for a contact in outlook, How can we use it in other apps?

    What do you want to do? In most cases the limited uniqueness of the EntryId is enough. If it is just about uniqueness per se, you can also store the EntryId of the information store containing the contact. If you need to track items which may be moved across different information stores, you can...
  9. S

    If there is no unique code for a contact in outlook, How can we use it in other apps?

    Review the EntryId property of Outlook contacts.
  10. S

    Can't Get Monaco Option to Show Up

    Which Update Channel are you on? I'm not sure whether Monaco arrived in the semi-annual channels yet.
  11. S

    Solved What's up with not being able to post simple replies?

    Not sure what relevance that does bear. It appears, it is possible to use RegExps to only reject links to other sites. Here is a thread in the Xenforo community showing examples: https://xenforo.com/community/threads/spam-phrases-to-detect-external-links-moderate.199113/
  12. S

    Solved What's up with not being able to post simple replies?

    The first line looks like a Regular Expression to me. If this is correct, it should be possible to rewrite the "*//*" line to something that does not match links back to this site but every other occurrence of "//".
  13. S

    Version Control for MS Access: Using the MSAccess-VCS Add-in

    I would guess, (un)loading a COM add-in will trigger Access to reload/reprocess the ribbon XML. - If this is true, the behavior is more or less logical. The only potentially surprising "feature" is that the ribbon XML of the current database is (re)processed last. With startFromScratch="true"...
  14. S

    Version Control for MS Access: Using the MSAccess-VCS Add-in

    I think, @Josef P. was asking whether you hide ribbon tabs while you are developing the application. If your approach to hiding the ribbons tabs is "Hide everything, then show what the current user has permission for.", then it appears likely that you yourself are hiding the missing VCS tab.
  15. S

    Enter Parameter Value

    It seems not. Marital statuses possible in most jurisdictions would be: Single, Married, Divorced, Widowed There may be several more, depending on jurisdiction and context.
  16. S

    Video editing

    Try to find and eliminate the cause of these volume fluctuations. It might be a defective microphone. Also check and experiment sensitivity and noise cancelling settings of the microphone driver/software. Your wife should also observe herself, whether she changes her position relative to the...
  17. S

    Search Fields

    SELECT TABLE_CATALOG ,TABLE_SCHEMA ,TABLE_NAME ,COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE COLUMN_NAME = 'YourKnownColumnName' This works with a number of database systems, including Microsoft SQL Server, which support the INFORMATION_SCHEMA Standard.
  18. S

    Version Control for MS Access: Using the MSAccess-VCS Add-in

    The VBA environment is not suitable to display Unicode characters, which are not included in your current character set (ANSI codepage). - From your original problem with the three-dot-character we know that it is not included in your codepage. Not exactly. The core characteristics should be...
  19. S

    Integrating online payment system to Ms access.

    It's the third time you ask this question without providing much detail. Without you providing further detail on your requirements and intentions, it is unlikely that you will get a more substantial and suitable reply this time. Your previous posts got some short pointers to possible...
  20. S

    Solved What's up with not being able to post simple replies?

    And the regex would be correct because it actually *is* an URL.
Back
Top Bottom