How to make vba to read and understand characters in other keyboard language
e.g
****************************************************
Private Sub A_AfterUpdate()
If Not IsNull(Me.A) Then
' This is not understandable for vba and in editor is writen with
' unureadable characters
If Trim(Me.A) = "ХШЃЧЌЧЧЃ ШЏФЊЕФР" Then
Me.B = "X"
Else
Me.B = "MKD"
End If
Else
Me.B = Null
End If
End Sub
***************************************
as weel
msgbox "асфјлкфмвкосслчд фдсфлчсдф"
is shown with unreadable characters
or
msgbox me.a.text
is shown with "???????????????"
should i turn on some references in VBA
or install some feattures
thanks
e.g
****************************************************
Private Sub A_AfterUpdate()
If Not IsNull(Me.A) Then
' This is not understandable for vba and in editor is writen with
' unureadable characters
If Trim(Me.A) = "ХШЃЧЌЧЧЃ ШЏФЊЕФР" Then
Me.B = "X"
Else
Me.B = "MKD"
End If
Else
Me.B = Null
End If
End Sub
***************************************
as weel
msgbox "асфјлкфмвкосслчд фдсфлчсдф"
is shown with unreadable characters
or
msgbox me.a.text
is shown with "???????????????"
should i turn on some references in VBA
or install some feattures
thanks