To set a Culture (date format, decimal symbol, etc.) simply insert this code to the beginning of the application:
System.Threading.Thread.CurrentThread.CurrentCulture = New System.Globalization.CultureInfo(“en-GB”)
Remember, if you have a multi-threading application, you must insert this line at the beginning of every thread.