Answers for "vba unicode to ansi"

VBA
0

vba unicode to ansi

' From Unicode to ANSI
Dim i As Long
Dim x() As Byte
x = StrConv("ABCDEFG", vbFromUnicode)    ' Convert string.
For i = 0 To UBound(x)
    Debug.Print x(i)
Next
Posted by: Guest on February-13-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language