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