J
Jason L James
Hi have two subroutines that change the currentCulture
property of my application.
I can call either:
System.Threading.Thread.CurrentThread.CurrentCulture = New
CultureInfo("en-GB")
or:
System.Threading.Thread.CurrentThread.CurrentCulture = New
CultureInfo("es-ES")
In my form load event I call this code:
Label1.Text = Format(500.5, "Currency")
However, I expected the format oif the string in the label to
be updated when the cultureInfo is changed. It does not! Am
I doing anything wrong?
Thanks,
Jason.
property of my application.
I can call either:
System.Threading.Thread.CurrentThread.CurrentCulture = New
CultureInfo("en-GB")
or:
System.Threading.Thread.CurrentThread.CurrentCulture = New
CultureInfo("es-ES")
In my form load event I call this code:
Label1.Text = Format(500.5, "Currency")
However, I expected the format oif the string in the label to
be updated when the cultureInfo is changed. It does not! Am
I doing anything wrong?
Thanks,
Jason.