TheOne23 Posted July 23, 2019 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)
Nine Posted July 23, 2019 Posted July 23, 2019 Read html file for remarks. It is quite clear... “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy Interface Object based on Tag
water Posted July 23, 2019 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 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
TheOne23 Posted August 13, 2019 Author Posted August 13, 2019 Hi Water, Thank you for your help. It is now clear to me. Thank you very much!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now