Jump to content

OutlookEX.au3 Question for _OL_ItemFind()


Recommended Posts

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)

 

Link to comment
Share on other sites

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 2022-02-19 - Version 1.6.1.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 (NEW 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

 

Link to comment
Share on other sites

  • 3 weeks later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...