Ciao, avrei bisogno di modificare le impostazioni regionali solo per il mio programma...
Intendo qualcosa tipo dire a windows di usare le impostazioni inglesi per il mio programma indipendentemente da quelle che sono quelle predefinite.
Ho cercato tutta la mattina e non ho trovato niente se non per vb.net, vi posto il codice per .net per chiarire le idee...
codice:
' Visual Basic
' Put the Imports statements at the beginning of the code module
Imports System.Threading
Imports System.Globalization
' Put the following code before InitializeComponent()
' Sets the culture to French (France)
Thread.CurrentThread.CurrentCulture = new CultureInfo("fr-FR")
' Sets the UI culture to French (France)
Thread.CurrentThread.CurrentUICulture = new CultureInfo("fr-FR")
Vi ringrazio...