Hi,
I've done an example of what I meet when I try to pass russian character to a string or to a message box.
I expect the message box contains "abcde" in cyrilic alphabet but the result of that are just funcy characters instead.
Any help?
I also changed the regional and language system setting but nothing changed.
Many Thanks
*********************************
cells (1,1) is = to "abcde" in cyrilic alphabet
Sub test()
Dim strRuss2 As Variant
Dim strRuss3 As String
strRuss3 = Cells(1, 1)
strRuss2 = "2ôèñâó" ' these should be "abcde" in cyrilic
MsgBox "Code = " + "1ôèñâó" + " " + strRuss2 + " " + strRuss3 + " " + Cells(1, 1)
End Sub
I've done an example of what I meet when I try to pass russian character to a string or to a message box.
I expect the message box contains "abcde" in cyrilic alphabet but the result of that are just funcy characters instead.
Any help?
I also changed the regional and language system setting but nothing changed.
Many Thanks
*********************************
cells (1,1) is = to "abcde" in cyrilic alphabet
Sub test()
Dim strRuss2 As Variant
Dim strRuss3 As String
strRuss3 = Cells(1, 1)
strRuss2 = "2ôèñâó" ' these should be "abcde" in cyrilic
MsgBox "Code = " + "1ôèñâó" + " " + strRuss2 + " " + strRuss3 + " " + Cells(1, 1)
End Sub