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:
  1. With cboColour.Items
  2.             .Add(KnownColor.Red)
  3.             .Add(KnownColor.Yellow)
  4.             .Add(KnownColor.Blue)
  5.  
  6.             .SelectedItem = KnownColor.Red
  7.         End With