[perl-win32-gui-users] How to: Splash screen ?

2004-04-15 Thread Sherif Mohamed
I want to make a splash screen, I do not know the best way, but I drew a Window with -style=> WS_POPUP this worked on win98, but on windows2003 server, Activestatperl 5.83 I still see the title of the window. Also the window opens with default grey color of windows for a moment, then the image appe

[perl-win32-gui-users] Work Arround to hide tray icon

2004-04-15 Thread Sherif Mohamed
I can hide the tray icon before the program exist by trying to show an empty (invalid) tray icon with the same id. sub main_Terminate { my $icon1; $ni = $main->AddNotifyIcon(-name => "NI", -id => 1, -icon => $icon1, -tip =>"MyApp App"); $main->Hide(); -1; } Hope this is useful to somebody :) I