[perl-win32-gui-users] Quick Question

2003-10-17 Thread Cruickshanks, Darin
All, This shouldn't really go to this list but here goes. I have a script where a user will enter a date in this format 25/11/2003 Does anyone know of a way with Perl to get the 'day' from this? (Mon,Tue etc) Darin Darin Cruickshanks Labs Man

RE: [perl-win32-gui-users] Quick Question

2003-10-17 Thread Howard, Steven (US - Tulsa)
If you are using Activestate Perl, Date::Calc should be part of your standard distribution. If it is not part of your distribution, you can get it from CPAN. It has a lot of very useful functions. Look through it to see what all it has. Using Date::Calc, here is one way you could do what you have

Re: [perl-win32-gui-users] Quick Question

2003-10-17 Thread Anthony George
-Original Message- From: "Cruickshanks, Darin" <[EMAIL PROTECTED]> To: Date: Fri, 17 Oct 2003 09:43:20 +0100 Subject: [perl-win32-gui-users] Quick Question > I have a script where a user will enter a date in this format > 25/11/2003 > > Does anyone know of a way with Perl to get the 'd

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

2003-10-17 Thread angelo . magnone
Does anyone have any examples of how to list all the folder names for a particular Outlook profile? I'm looking at using Win32::OLE but can't figure out how to list ALL folder names. Any help would be appreciated. Thanks! This e-mail m

[perl-win32-gui-users] off-topic: Quick Question

2003-10-17 Thread Johan Lindstrom
At 10:43 2003-10-17, Cruickshanks, Darin wrote: I have a script where a user will enter a date in this format 25/11/2003 Does anyone know of a way with Perl to get the 'day' from this? (Mon,Tue etc) I'll help you help yourself by pointing to the two modules you need. C:\> perldoc Date::Par

RE: [perl-win32-gui-users] Problems formatting text box - Favour! !

2003-10-17 Thread Ounsted, Toby
Hi, Would someone be able to test the below and confirm whether it's just me? Specifically I can't get coloured text if the 'align' is in place for the text field, but commented out the colours come back. What am I doing wrong?! Thanks, Toby. use Win32::GUI; $Desktop = Win32::GUI::GetDe

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] Problems formatting text box - Favour! !

2003-10-17 Thread Aldo Calpini
Ounsted, Toby wrote: > Hi, > > Would someone be able to test the below and confirm whether it's just me? > Specifically I can't get coloured text if the 'align' is in place for the > text field, but commented out the colours come back. What am I doing > wrong?! Toby, it doesn't show this behavio

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
I had serious issues using Win32::OLE to access Outlook. Memory usage was outrageous. I found the CDO library to be much easier to use and much lighter on the resources. It's been a while since I've dug into it, but I believe it has the ability to access any folder within Outlook, either base