新手问题:关于汉字的用二进制方式读取时。汉字读不出来,请大家帮忙!贴出代码,请
Private Sub Command6_Click()Dim TepByte As Byte
Text2.Text = ""
Open "d:\mytext3.txt" For Binary As #1
For i = 1 To LOF(1)
Get #1, , TepByte
Text2.Text = Text2.Text+chr(TepByte)
Next i
Close #1
End Sub