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,
-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
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
3 matches
Mail list logo