[perl-win32-gui-users] PRoblems formatting text box

2003-10-14 Thread Ounsted, Toby
Hi all, I'm trying to generate a text box within a window. $Countdown_Window->AddTextfield( -name => "Countdown_Text", -font => $font, -foreground => [0,255,0], -background => [0,0,255], -multiline => 1, -text => $Message,

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

2003-10-17 Thread Ounsted, Toby
-text => $Message, -left => 0, -top=> 0, -width => $Hello_Width, -height => $Hello_Height - 100, -readonly => 1, -align => center, ); $Hello_Window->Show(); Win32::GUI::Dialog(); sub Window_Te

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