Search results

  1. 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...
  2. 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.
  3. 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.
  4. 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/
  5. 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 "//".
  6. 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"...
  7. 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.
  8. 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.
  9. 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...
  10. 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.
  11. 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...
  12. 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...
  13. 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.
  14. S

    Solved Receiving Emails in Access Database using CDO 2000 library

    EAGetMail is a commercial 3rd party component. You buy a license, then download and install their setup. After you did this it should also be available in Microsoft Access/VBA. They even have a 64bit edition of their component. So, I don't see a reason why you couldn't use this component if you...
  15. S

    Solved Receiving Emails in Access Database using CDO 2000 library

    You mean the "Microsoft CDO for Windows 2000 Library"? That does neither contain a CDO.Session nor a CDO.Inbox class. This CDO library is only meant to send emails, not to receive them.
  16. S

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

    Attend and find out. ;-)
  17. S

    Solved Folder not open

    The environment variable UserProfile will give you the beginning of the path including the username. Dim UserProfilePath as String UserProfilePath = Environ("Userprofile") Dim abre abre = Shell("explorer.exe " & UserProfilePath & "\Documents\Backups", vbNormalFocus)
  18. S

    Interface seems dumbed down

    Yes: "(Access 2007 - 2016 file format)"
  19. S

    Interface seems dumbed down

    1.) The two windows are not of the same version. The blueish window in the front is Access 2007, the white/grey window in the background is at least Access 2019 and might be even the most recent version of Access 365 as of today. 2.) You do have nearly the same number of icons. Actually, I see...
  20. S

    Search for possible declarations

    Here 🙋‍♂️ I do that occasionally. But, IIRC, this would already trigger the capitalization issue if class name and variable name don't use the exact same capitalization. So, it would be tolerable if your code would change this unintentionally.
Back
Top Bottom