Hi Everyone,
i would like to ask your assistance to check the issue on outlookex.au3.
my script before was running smoothly but as of today I got error while running it.
Below is the script i am having issues with outlookex.au3
Attached is the actual error from outlookex.au3
Your help will be greatly appreciated.
#include <OutlookEX.au3>
#include <Array.au3>
Global $oOutlook = _OL_Open()
If @error <> 0 Then Exit MsgBox(16, "OutlookEX UDF", "Error creating a connection to Outlook. @error = " & @error & ", @extended = " & @extended)
Global $aOL_Item = _OL_ItemFind($oOutlook, "RonaldJayson_paggao@comcast.com\Inbox\BP_automation", $olMail, "[UnRead]=True", "", "", "EntryID,body,receivedtime,senderemailaddress", "", 2)
_ArrayDisplay($aOL_Item) ; This code was working before but today it has an issue and error.
Global $aOL_Item = _OL_ItemFind($oOutlook, "RonaldJayson_paggao@comcast.com\Inbox\BP_automation", $olMail, "[UnRead]=True", "", "", "EntryID,Subject", "", 2)
_ArrayDisplay($aOL_Item) ; this code works but i need to use the previouse code with item properties "EntryDI,body,receivedtime,senderemailaddress"