MessageBox Yes/No translations

  • Thread starter Thread starter FlyFish
  • Start date Start date
F

FlyFish

Hi,

is there possible to translate Yes/No from MessageBox class? I suppose the
language used with these two words depends on the system windows language.
 
FlyFish said:
is there possible to translate Yes/No from MessageBox class? I suppose the
language used with these two words depends on the system windows language.

You can't change the text directly, but it would be very easy to create
a small form yourself that would look just like it. You can use the
DialogResult property of the form to get the same type of value that
MessageBox returns, so you could drop it right into place.

Jeremy
 
Back
Top