Help for this page

Select Code to Download


  1. or download this
    sub icon {
    my $sIcon = Win32::Console::SetIcon("logo.gif");
    }
    
  2. or download this
    $CONSOLE->SetIcon("C:/My/Path/To/Custom.ico");
    
  3. or download this
    my $CONSOLE = Win32::Console->new;
    $CONSOLE->SetIcon('C:/myIcon.ico');
    
  4. or download this
    Win32::Console->SetIcon('C:/myIcon.ico');