Public Const FLAGS = SWP_NOMOVE Or SWP_NOSIZE Or conSwpNoActivate
Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal x As Long, ByVal y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
'Declares and constant for getting the locale information
Public Const LOCALE_SDECIMAL = &HE
Declare Function GetLocaleInfo Lib "kernel32" Alias "GetLocaleInfoA" (ByVal Locale As Long, ByVal LCType As Long, ByVal lpLCData As String, ByVal cchData As Long) As Long
Declare Function GetUserDefaultLCID Lib "kernel32" () As Long
Public Function ConvertDecimalDelimiter(sNumber As String, sDecimalDelimiter As String) As String