Peter wrote:
is there a solution for creating splash screens without the windows border
and icons (e. g. like Opera).

Try this:

my $winMain = new Win32::GUI::Window(
        -left   => 13,
        -top    => 32,
        -width  => 439,
        -height => 260,
        -name   => "winMain",
        -text   => "Autoscroller",
        -style => 0x80000000                    #WS_POPUP
        );

Read more about the CreateWindow function in the Win32 API for other things you can do to the style.

<http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcesdkr/htm/_wcesdk_win32_createwindow.asp>


/J - just back from YAPC::Europe in Amsterdam

------ ---- --- -- -- -- -  -   -    -        -
Johan Lindström                    Boss Casinos
Sourcerer                     [EMAIL PROTECTED]
                 http://www.bahnhof.se/~johanl/
If the only tool you have is a hammer,
everything tends to look
like a nail


Reply via email to