1
我在Outlook 2010中使用VBA,並試圖創建一個函數,它將從Active Directory中檢索選定的用戶主文件夾路徑。VBA Outlook 2010檢索Active Directory中的信息
以下代碼是一個簡單的彈出窗口,其中包含保存目標。
Sub SaveSelected()
'Declaration
Dim myItems, myItem, myAttachments, myAttachment
Dim myOrt As String
Dim myOLApp As New Outlook.Application
Dim myOlExp As Outlook.Explorer
Dim myOlSel As Outlook.Selection
Dim objFSO As Object
Dim intCount As Integer
'Ask for destination folder
myOrt = InputBox("Destination", "Save Attachments", "\\server\home\VARIABLE\")
End Sub
我想VARIABLE來自AD取決於當前選擇的電子郵件。
比如我從[email protected]收到一封電子郵件,然後我從[email protected]選擇電子郵件,我希望能夠找回
\服務器\ home目錄\吉米
並使用「jimmy」作爲我的VARIABLE。 如果這是可能的任何幫助將不勝感激。