Read the 'sDecimal' in the 'intl' section of WIN.INI. Use the
GetProfileString API call to do this.
(16-bit)
Declare Function GetProfileString Lib "Kernel" (ByVal lpAppName As String,
ByVal lpKeyName As Any, ByVal lpDefault As String, ByVal lpReturnedString
As String, ByVal nSize As Integer) As Integer
(32-bit)
Declare Function GetProfileString Lib "kernel32" Alias "GetProfileStringA"
(ByVal lpAppName As String, ByVal lpKeyName As String, ByVal lpDefault As
String, ByVal lpReturnedString As String, ByVal nSize As Long) As Long
Quote:> I'd like to know if there is any way to read the regional configuration
> setting
> For exemple Decimal Separator ("," or ".")
> using VB4