perllee has asked for the wisdom of the Perl Monks concerning the following question:

Hi,

Win32::MsgBox(Pop-up box) always appears in the main program window below,how to make it play come to the front? ?

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; }
Thanks.
  • Comment on Win32::MsgBox(Pop-up box) always appears in the main program window below
  • Download Code

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
    1) no it doesn't :) 2) it does what it does, you can't make it do something else