VB实现按行读取文本文件的方法
本文实例讲述了VB实现按行读取文本文件的方法。分享给大家供大家参考。具体如下:
'(generaldeclaration) DimnFileNumAsInteger,sTextAsString,sNextLineAsString,lLineCountAsLong '================================== PrivateSubCommand1_Click() 'Getafreefilenumber nFileNum=FreeFile 'Openatextfileforinput.inputboxreturnsthepathtoreadthefile Open"C:\DocumentsandSettings\Sudeep\MyDocuments\3.txt"ForInputAsnFileNum lLineCount=1 'Readthecontentsofthefile DoWhileNotEOF(nFileNum) LineInput#nFileNum,sNextLine 'dosomethingwithit 'addlinenumberstoit,inthiscase! sNextLine=sNextLine&vbCrLf sText=sText&sNextLine Loop Text1.Text=sText 'Closethefile ClosenFileNum EndSub
希望本文所述对大家的VB程序设计有所帮助。