How to create txt file
问题 I have to create a txt file so with some large content in VB6. Can anybody help me out on this and please tell me the references also. 回答1: This is how you can create a text file in VB6 Dim iFileNo as Integer iFileNo = FreeFile 'open the file for writing Open "C:\Test.txt" For Output As #iFileNo 'please note, if this file already exists it will be overwritten! 'write some example text to the file Print #iFileNo, "first line of text" Print #iFileNo, " second line of text" Print #iFileNo, ""