HaKLMTT has asked for the wisdom of the Perl Monks concerning the following question:
According my test result, Win32::MsgBox() can not support Unicode stri +ng. The following is the code: my $teststr = "\x{6211}\n"; #This is a Chinese Character MsgBox("$teststr\n"); use Win32; sub MsgBox { my ($msg, $flag, $title) = @_; Win32::MsgBox($msg,$flag,$title); } Finally it shows a string with messy code. Is there any other method I + can use to pop out a message box with Unicode string as input? Thank + you very much
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Does Win32::MsgBox() support Unicode string?
by Anonymous Monk on Aug 05, 2009 at 11:21 UTC |