in reply to Win32 Alert Boxes from Perl
Simple! That prints a message box with Yes and No buttons, the text "hello world" and then prints "6" if the user clicked yes, and 7 if the user clicked no, in your perl window.use Win32; $returnvalue = Win32::MsgBox("Hello World",4,"WindowTitle"); print $returnvalue;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Win32 Alert Boxes from Perl
by zakzebrowski (Curate) on Jan 19, 2001 at 18:44 UTC |