Jump to content

how to check for Visible Text info in outlook 2003 journal entry dialog box?


Recommended Posts

i use the Journal feature in Outlook 2003 a lot. when i open a new Journal Entry, using AutoIT Window Info, i can see that the body of the Journal can be seen under the "Visible Text" field. now how would i detect the value of this Visible Text in a script?

Edited by dwaynek
Link to comment
Share on other sites

I'm working on the OutlookEX UDF (successor of Outlook UDF written by wooltown). Journal items aren't implemented yet - but if you tell me what you need I'll have a look at it.

Maybe the UDF already has everything you need: Access the journal, filter entries and get data for a single entry.

For download please see my signature!

Edited by water

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

I tested this example script on Outlook 2003 and Outlook 2010 and it works fine. It selects all Journal entries with subject "Test" and displays the properties type, subject, start, body and EntryID in an array.

Then it selects the first item by EntryID and displays all properties in an array.

#include <OutlookEX.au3>
$iOL_Debug = 2
$oOutlook = _OL_Open()
Global $aItems = _OL_Itemfind($oOutlook, "*\Journal", $olJournal, "[Subject]='Testeintrag'", "", "", "Type,Subject,Start,Body,EntryID")
_ArrayDisplay($aItems)
Global $aItem = _OL_ItemGet($oOutlook, $aItems[1][4])
_ArrayDisplay($aItem))
Edited by water

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

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...