VB reads and writes TXT files

Source: Internet
Author: User
Private sub commandateclick () 'read the file
Open "D: a.txt" for input as #1
Dim lines as string
Dim nextline as string
Dim I as integer

Do while not EOF (1)
On Error resume next
Line input #1, nextline
Lines = Lines & nextline & CHR (13) & CHR (10)
Loop

Close #1
Text1.text = lines
End sub

Private sub command2_click () 'Write a file
Open "D: a.txt" for output as #1
Print #1, text1.text
Close #1
End sub

'If you want to process a.txt of the program directory, you should write it like this:
'Open app. Path + "/a.txt" for input as #1

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.