ElvisUntot
Programmer
can anyone tell me how to read an unicode file and how to display it?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Command1_Click()
mystring = "hello world"
mystring = StrConv(mystring, vbUnicode)
debug.print mystring
Open "c:\tempunicode.txt" For Output As #1
Print #1, mystring
Close #1
'check the file you will see it is in unicode format
mystring = ""
Open "c:\tempunicode.txt" For Input As #1
Input #1, mystring
Close #1
debug.print mystring
End Sub