cbrauner has asked for the wisdom of the Perl Monks concerning the following question:

how do i change the icon in the left upper corner (title bar menu) of a win32:gui window ?
  • Comment on change icon in win32 title bar (win32::gui::window)

Replies are listed 'Best First'.
Re: change icon in win32 title bar (win32::gui::window)
by Crian (Curate) on Sep 15, 2009 at 12:12 UTC

    As I read somewhere else:

    my $icon = new Win32::GUI::Icon('icon.ico'); $main->SetIcon($icon);
      thx