in reply to Win32::GUI frustration
my $clsColor = Win32::GUI::Class->new( -name => "classColor", -color => 2, ) or die("Could not create Class\n");
And when you create the window, add the option
-class => $clsColor,
If you happen to use The GUI Loft, I stole this snippet from the demo program FetchURL. It's a bit different, so copy the demo program and go from there.
/J
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Win32::GUI frustration
by Anonymous Monk on Jun 29, 2004 at 14:12 UTC | |
|
Re^2: Win32::GUI frustration
by flippy (Novice) on Jun 29, 2004 at 14:38 UTC |