我在 Access VBA 中使用 Redemption 对象来访问 Outlook。
这DefaultStore.EntryID
取决于logon
我使用的会话方法。
这是我的代码:
Dim oSession As New Redemption.RDOSession
oSession.Logon
Debug.Print oSession.Stores.DefaultStore.EntryID
oSession.Logoff
oSession.LogonExchangeMailbox ("MyADUsername"), "mail.server.com"
Debug.Print oSession.Stores.DefaultStore.EntryID
oSession.Logoff
Set oSession = Nothing
我的第一个Debug.Print
返回一个大约 336 个字符长的字符串。第二个返回一个大约 76 个字符长Debug.Print
的不同字符串(具有一些相同的字符)。
我在这里可能做错了什么或误解?