您好我正在尝试将字符串设置为文本文件中的文本,但我的字符串中包含随机字母。我不知道他们来自哪里。
示例txt doc中的文本将说" hello world"我的字符串将出现" JHDhello world"或类似的东西。这就是我正在使用的代码。
Dim strFilename, strText as string
myFile = "N:\BU850\Covey\Message\" & strFilename
Open myFile For Input As #1
Do Until EOF(1)
Line Input #1, textline
strText = strText & textline
Loop
Close #1
txt1.Value = strText