When my application starts, I create a splashscreen. I found the code in
an example. What I want to do is add some functionality to the picture.
my %cOptions;
$cOptions{-size} = [($SplashPic->Info())[0,1]];
$cOptions{-bitmap} = $SplashPic;
my $splash = Win32::GUI::Label->new(
-popstyle => WS_CHILD,
-addstyle => WS_POPUP,
-addexstyle => WS_EX_TOPMOST | WS_EX_TOOLWINDOW,
-background => 0xFFFFFF,
%cOptions,
);
This just shows a label containing the picture. I want to display a
checkbox on top of the picture to allow the splashscreen to be turned
off. but I can't get the label widget to show if I put it in a $mw.
Sky Blueshoes