Re: [perl-win32-gui-users] Borderless Main Window

2010-03-05 Thread Kevin Marshall
Ken, Instead of using -pushstyle, you need to use -popstyle. As for the constants needed, you will need to use WS_CAPTION to remove the title bar and WS_THICKFRAME to remove the window's sizing border. Here is an example: $splash = Win32::GUI::Window->new( -name => 'splash', -size =

[perl-win32-gui-users] Borderless Main Window

2010-03-05 Thread Ken Slater
Hello, Let me preface my question by saying that I haven't used Win32::GUI very much, so I might be missing something obvious. I want to create a borderless window (splash screen) and have done so using the -style option when creating the new window. Unfortunately, this option is deprecated,