From: Johan L. <jp...@bo...> - 2001-05-15 20:30:48
|
Jeremy Aiyadurai wrote: >how do i get an icon to work for a console window...eg. i want to get rid >of the console-window-dos-prompt icon when i run my console program. Untested, but try something like this: my $icoDOS = ... create your icon object here ...; my $hwindDOS = Win32::GUI::GetPerlWindow(); Win32::GUI::SetIcon($hwindDOS, $icoDOS, 0); I found the docs for this in the Win32_GUI.html file. /J -- Johan Lindström, Sourcerer, Boss Casinos Ltd, Antigua jp...@bo... |