RE: [perl-win32-gui-users] Outlook - list all folders

2003-10-17 Thread Howard, Steven (US - Tulsa)
I used something like this in a project I started a couple of years ago. I'll post the script so you can see what it looks like, but it has been a long time since I have even looked at this script. I know it works, and it does get the folders on some levels, and you can see that. Some of the loops

RE: [perl-win32-gui-users] Outlook - list all folders

2003-10-17 Thread Ounsted, Toby
Adapted from a similar script by Rob Hanson on perl-win32-users - hope this helps. use strict; use Win32::OLE; # use existing instance if Outlook is already running, or launch a new one my $ol; eval {$ol = Win32::OLE->GetActiveObject('Outlook.Application')}; die "Outlook not installed" if $@; u

RE: [perl-win32-gui-users] Outlook - list all folders

2003-10-17 Thread Jeremy Blonde
nified School District 530.757.5300 ext. 117 -----Original Message- From: Ounsted, Toby [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 7:19 AM To: '[EMAIL PROTECTED]' Cc: Perl-Win32-Gui-Users (E-mail) Subject: RE: [perl-win32-gui-users] Outlook - list all folders Adapted