Hi,
I like to adapt my script for use in all countries. In order to do so, I need to know Currency Symbol, Decimal Separator and Thousands Separator. in accordance with Windows Control Panel settings:
The following code works fine with WindowsXP but not with Windows98SE.
;Check the Decimal, Thousands separator and Currency Symbol in accordance with Regional Settings
$IntDecSep = RegRead("HKEY_CURRENT_USER\Control Panel\International", "sDecimal")
$Int1000Sep = RegRead("HKEY_CURRENT_USER\Control Panel\International", "sThousand")
$IntCurSym = RegRead("HKEY_CURRENT_USER\Control Panel\International", "sCurrency")
Can somebody tell me how to obtain regional settings for other versions of Windows such as Win98SE?
harryh