Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Outlook addressbook

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I want to read the "exchange" adressbook (recipient address, business, phone etc.) using outlook oleobjects. Can anybody help me?

Aad Mess
Netherlands
aadmess@wishmail.net
 
First try looking up the "OLE Automation" and "OLE Container Properties" in your manual. My version (4)
has examples for Word and Excel.

You will need to access the Outlook COM object using OLE.

I have been using the file format below to read Outlook
files. You may find it useful, but no guarantees.

OutLook:FileName STRING(80)
OutLook FILE,DRIVER('BASIC'),NAME(OutLook:FileName),PRE(OUT),CREATE,BINDABLE,THREAD
Record RECORD,PRE()
Title STRING(50)
FirstName STRING(50)
MiddleName STRING(50)
LastName STRING(50)
Suffix STRING(50)
Company STRING(50)
Department STRING(50)
JobTitle STRING(50)
BusinessStreet STRING(50)
BusinessStreet2 STRING(50)
BusinessStreet3 STRING(50)
BusinessCity STRING(50)
BusinessState STRING(50)
BusinessPostCode STRING(50)
BusinessCountry STRING(50)
HomeStreet STRING(50)
HomeStreet2 STRING(50)
HomeStreet3 STRING(50)
HomeCity STRING(50)
HomeState STRING(50)
HomePostCode STRING(50)
HomeCountry STRING(50)
OtherStreet STRING(50)
OtherStreet2 STRING(50)
OtherStreet3 STRING(50)
OtherCity STRING(50)
OtherState STRING(50)
OtherPostCode STRING(50)
OtherCountry STRING(50)
AssistantsPhone STRING(50)
BusinessFax STRING(50)
BusinessPhone STRING(50)
BusinessPhone2 STRING(50)
Callback STRING(50)
CarPhone STRING(50)
CompanyMainPhone STRING(50)
HomeFax STRING(50)
HomePhone STRING(50)
HomePhone2 STRING(50)
ISDN STRING(50)
MobilePhone STRING(50)
OtherFax STRING(50)
OtherPhone STRING(50)
Pager STRING(50)
PrimaryPhone STRING(50)
RadioPhone STRING(50)
TTY_TDD_Phone STRING(50)
Telex STRING(50)
Account STRING(50)
Anniversary STRING(50)
AssistantsName STRING(50)
BillingInformation STRING(50)
Birthday STRING(50)
Categories STRING(50)
Children STRING(50)
EMailAddress1 STRING(50)
EMailDisplayName1 STRING(50)
EMailAddress2 STRING(50)
EMailDisplayName2 STRING(50)
EMailAddress3 STRING(50)
EMailDisplayName3 STRING(50)
Gender STRING(50)
GovernmentIDNumber STRING(50)
Hobby STRING(50)
Initials STRING(50)
KeyWords STRING(50)
Language STRING(50)
Location STRING(50)
Mileage STRING(50)
Notes STRING(50)
OfficeLocation STRING(50)
OrganizationalIDNumber STRING(50)
POBox STRING(50)
Private STRING(50)
Profession STRING(50)
ReferredBy STRING(50)
Spouse STRING(50)
User1 STRING(50)
User2 STRING(50)
User3 STRING(50)
User4 STRING(50)
WebPage STRING(50)
END
END
OutLook::Used LONG,THREAD
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top