TXT文件的读取 使用Binary模式比input模式少一些错误,下面是最简单的读取方法 Open "TXT文件" For Binary As #1 Text1.Text = Input(LOF(1), 1) Close 1