Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Extract Outlook Telephone Numbers

by dze27 (Pilgrim)
on Mar 03, 2001 at 01:49 UTC ( [id://61899]=note: print w/replies, xml ) Need Help??


in reply to Extract Outlook Telephone Numbers

neat! This worked for me except it did not print the Caption on line 26. I'm using Outlook 97 (poor me) so maybe that's the problem. $activeexplorer->CurrentFolder->Name seems to work though.

What is the meaning of 069 (line 46)?

I added some code after line 24 to automatically change to the Contacts folder:

use Win32::OLE::Const 'Microsoft Outlook';
and
my $outlook; $outlook = Win32::OLE->new('Outlook.Application'); my $namespace = $outlook->GetNamespace("MAPI"); my $Folder = $namespace->GetDefaultFolder(olFolderContacts); print $Folder->Name,"\n"; my $items = $Folder->Items; print $items->Count,"\n";
does it. (Between "my $outlook;" and "print $items->Count,"\n";)

This doesn't change folders on the running copy of Outlook. The extra "use" line is required for using olFolderContacts.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://61899]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (5)
As of 2024-04-23 06:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found