TheOne23 7 Posted July 23, 2019 Hi Water, May I seek your kind help on below: ; Name ..........: _OL_ItemFind ; Description ...: Find items (contacts, appointments ...) returning an array of all specified properties. ; Syntax.........: _OL_ItemFind($oOL, $vOL_Folder[, $iOL_ObjectClass = Default[, $sOL_Restrict = ""[, $sOL_SearchName = ""[, $sOL_SearchValue = ""[, $sOL_ReturnProperties = ""[, $sOL_Sort = ""[, $iOL_Flags = 0[, $sOL_WarningClick = ""]]]]]]]]) ; Parameters ....: $oOL - Outlook object returned by a preceding call to _OL_Open() ; $vOL_Folder - Folder object as returned by _OL_FolderAccess or full name of folder where the search will be started. ; +If you want to search a default folder you have to specify the folder object. ; $iOL_ObjectClass - Optional: Class of items to search for. Defined by the Outlook OlObjectClass enumeration (default = Default = $olContact) ; $sOL_Restrict - Optional: Filter text to restrict number of items returned (exact match). For details please see Remarks ; $sOL_SearchName - Optional: Name of the property to search for (without brackets) ; $sOL_SearchValue - Optional: String value of the property to search for (partial match) ;$sOL_SearchValue - Optional: String value of the property to search for (partial match) On this parameter I am not sure what to put on. I tried below code: Global $oOL = _OL_Open() Global $string_date = StringReplace(_NowCalcDate(),"/","") Global $aItems = _OL_ItemFind($oOL, "Ronald.paggao\Inbox\Done",$olMail,"","",$string_date,"EntryID,SentOn,Subject","",4) msgbox(0,"Count: ",$aItems) Share this post Link to post Share on other sites
Nine 996 Posted July 23, 2019 Read html file for remarks. It is quite clear... Not much of a signature but working on it... Spoiler Block all input without UAC Save/Retrieve Images to/from Text Tool to search content in au3 files Date Range Picker Sudoku Game 2020 Overlapped Named Pipe IPC x64 Bitwise Operations Multi-keyboards HotKeySet Fast and simple WCD IPC Multiple Folders Selector GIF Animation (cached) Share this post Link to post Share on other sites
water 2,393 Posted July 23, 2019 You need to specify parameter $sOL_SearchName. Else the function does not know where to search (which mail property). The _OL_ItemFind.au3 example script provides a lof of ... examples My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
TheOne23 7 Posted August 13, 2019 Hi Water, Thank you for your help. It is now clear to me. Thank you very much! Share this post Link to post Share on other sites