0
我知道從Excel Application.Run
方法,與我可以打開從Outlook的Excel宏。
我需要將Excel.Application
對象切換爲Outlook.Application
,它不起作用。
的錯誤信息是:"Method is not supported."
我知道從Excel Application.Run
方法,與我可以打開從Outlook的Excel宏。
我需要將Excel.Application
對象切換爲Outlook.Application
,它不起作用。
的錯誤信息是:"Method is not supported."
根據這一thread,要做到這一點的唯一方法是調用存儲在ThisOutlookSession
一個過程:
Set myOlApp = CreateObject("Outlook.Application")
myOlApp.MyProcedure
然而,這似乎通過MS不支持。