G
Gregg
I can set my CurrentCulture and CurrentUICulture to de-DE (German-Germany)
and resources load from my German-Germany satellite assembly.
The problem I run into is that the Windows Forms MessageBox.Show method does
not show German-Germany response buttons. For example,
MessageBox.Show("Test Message","Test",MessageBoxButtons.YesNoCancel); still
shows 'Yes','No', and 'Cancel' rather than 'Ja', 'Nein', and 'Abbrechen'.
Any clues as to why this is happening?
I'm using this code to set my culture:
Thread.CurrentThread.CurrentCulture = new CultureInfo("de-DE");
Thread.CurrentThread.CurrentUICulture = new CultureInfo("de-DE");
-Gregg
and resources load from my German-Germany satellite assembly.
The problem I run into is that the Windows Forms MessageBox.Show method does
not show German-Germany response buttons. For example,
MessageBox.Show("Test Message","Test",MessageBoxButtons.YesNoCancel); still
shows 'Yes','No', and 'Cancel' rather than 'Ja', 'Nein', and 'Abbrechen'.
Any clues as to why this is happening?
I'm using this code to set my culture:
Thread.CurrentThread.CurrentCulture = new CultureInfo("de-DE");
Thread.CurrentThread.CurrentUICulture = new CultureInfo("de-DE");
-Gregg