Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unicode Language Support in the VBA editor

I have a VBA project in Excel 2003.

This VBA project was written in Russian using Cyrillic encoding, so all the comments and messages are unreadable on my English OS (WindowsXP).

so the code on Russian machine looking like (OK):

Sub Select_I()
'Выделяет по текущей ячейке "построчный" диапазон для ввода данных по объекту

become on mine (NOT OK)

Sub Select_I()
'Âûäåëÿåò ïî òåêóùåé ÿ÷åéêå "ïîñòðî÷íûé" äèàïàçîí äëÿ ââîäà äàííûõ ïî îáúåêòó

Is there a way to "indicate" to the VBA editor what encoding to use?

like image 432
serhio Avatar asked Aug 12 '12 20:08

serhio


1 Answers

I've found a workaround for me - when copy-paste Russian text from VBA editor to somewhere else in Windows and keyboard at that moment is in Russian layout, then pasted Russian symbols are displayed correctly.

like image 139
Aleksey Avatar answered Sep 22 '22 23:09

Aleksey