如何将文本文件中的文本逐行加入到Listbox中
如何将文本文件中的文本逐行加入到Listbox中
err.clear
ffile=freefile
open "text" for input as #ffile
if err.number<>0 then exit sub '读入错误
dim gettext as string
while not eof(ffile)
line input #ffile,gettext
list1.additem gettext
wend
close #ffile
[此贴子已经被作者于2006-8-14 17:31:22编辑过]