Returns the decimal value of the local computers LocaleID.
Syntax getLocale()
Dim myLocale
'Get current location
myLocale = GetLocale()
PowerShell equivalent, get the value of the LCID property:
$localeID = (get-culture).lcid
Get the locale string:
$locale = (get-culture).displayname
“Who looks outside, dreams; who looks inside, awakes” ~ Carl Gustav Jung
LCase - Return String in lower case.