in reply to Re: Win32::OLE->GetObject("winmgmts:") changes my locale
in thread Win32::OLE->GetObject("winmgmts:") changes my locale
printsprint "LOCALE " . setlocale(LC_NUMERIC) . "\n"; my $winmgmts = Win32::OLE->GetObject("winmgmts:"); print "LOCALE " . setlocale(LC_NUMERIC) . "\n"; setlocale(LC_NUMERIC, 'C'); print "LOCALE " . setlocale(LC_NUMERIC) . "\n";
LOCALE C LOCALE German_Germany.1252 LOCALE CWhich answers most of my questions. The issues still bothering me are:
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Win32::OLE->GetObject("winmgmts:") changes my locale
by Anonymous Monk on Apr 20, 2009 at 13:51 UTC | |
by Boldra (Curate) on Apr 20, 2009 at 14:36 UTC |