Help for this page

Select Code to Download


  1. or download this
    use Win32::GUI;
        $main = Win32::GUI::Window->new(
    ...
        sub Main_Terminate {
            -1;
        }
    
  2. or download this
    use Win32::GUI;
    $main = Win32::GUI::Window->new(
    ...
            -height => 100,
        );
    $main->Show();
    
  3. or download this
     $main->AddLabel(-text => "Hello, world");