perllee has asked for the wisdom of the Perl Monks concerning the following question:
Win32::MsgBox(Pop-up box) always appears in the main program window below,how to make it play come to the front? ?
Thanks.sub error_box { use Win32; my $Message = "Format error, please enter again"; my $Result = Win32::MsgBox( $Message , 16+4 ,"Input format judgmen +t" ); ( $Result == 6) ? &INPUT_JUDGE : exit; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Win32::MsgBox(Pop-up box) always appears in the main program window below
by Anonymous Monk on Dec 21, 2012 at 07:13 UTC |