KnownColour in local language
I've got the following code in my application. When I run it on my English PC (with English .NET Framework) the combo box populates with "Red", "Yellow", "Blue".
I was hoping that when I ran it on a German PC it would populate with "Rot", "Gelbe", "Blau". This doesn't seem to happen. I hope this is just because I have English .NET installed on my German Win2000 PC.
Does anyone have a non-English language version of .NET framework installed? Could you test this for me please?
Thanks.
VB Code:
With cboColour.Items
.Add(KnownColor.Red)
.Add(KnownColor.Yellow)
.Add(KnownColor.Blue)
.SelectedItem = KnownColor.Red
End With