how can I write msgbox msg in another language?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'd like to show msg to user and use for it msgbox. How can I show msg in
different language ( for an example in Georgian) ?
Thanks
 
AFAIK, the language of the message box is dependent on the operating system.

Try creating your own form that looks like a message box, and use it
instead.
 
<Place tongue firmly in cheek>

You mean like this?
MsgBox "Y'all come on down now, y' heyah!", ,"Georgian Language"

<You can relax your tongue, now>

The text displayed in a message box is just a string but I'm guessing for
Georgian you need a special font? I think the fonts used are set in the
operating system but, you can look in VBA Help for the LanguageSettings Property
and the LanguagePreferredForEditing and see if that gets you anywhere.

Application.LanguageSettings.LanguagePreferredForEditing(lid As MsoLanguageID)


HTH,
RD
 
Back
Top