Help for this page

Select Code to Download


  1. or download this
  2. or download this
    use strict; 
    use Win32::GUI();
    ...
                    -id => $Menu_id++,
                    -onClick => $MessageBox_About->DoModal(),
            );
    
  3. or download this
            my $Main = new Win32::GUI::Window(
                    -name  => "MainWindow",
    ...
                    -text => "Welcome",
                    -pos => [12,10],
            );
    
  4. or download this
    my $MessageBox_About = new Win32::GUI::Window(
                    -name => "AboutWindow",
    ...
    
            sub MsgBox_Button_Click {return -1;}
            #closes the messagebox
    
  5. or download this
    sub MenuButton1_About_Click{$MessageBox_About->DoModal(); return 0;}