Hello,
I'm trying to use foreign language (Hebrew) characters in VBA Msgbox.
I know that if I want to use foreign language characters I need to configure in Windows, the "non unicode programs" (in the control panel>Region>Administrative), but I want to achieve this without configure this Windows setting.
I tried to concatenate a few of chr/chrW functions to create a sentence and the prompt it as a message box but I get a gibberish text or a ????? text.
Is it possible to do it without changing the windows setting ?
here is a Hebrew text if you want to test it
I'm trying to use foreign language (Hebrew) characters in VBA Msgbox.
I know that if I want to use foreign language characters I need to configure in Windows, the "non unicode programs" (in the control panel>Region>Administrative), but I want to achieve this without configure this Windows setting.
I tried to concatenate a few of chr/chrW functions to create a sentence and the prompt it as a message box but I get a gibberish text or a ????? text.
Is it possible to do it without changing the windows setting ?
here is a Hebrew text if you want to test it
VBA Code:
Sub Test
Msgbox "ניסיון"
End Sub