2
我在Access VBA中使用Redemption對象來訪問Outlook。Store.EntryID不同,具體取決於會話登錄方法
DefaultStore.EntryID
根據我使用哪個Session 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個字符。第二個Debug.Print
返回一個長度大約爲76個字符的不同字符串(與部分相同字符)。
我會在這裏做什麼錯誤或誤解?