Monday 26 June 2017

Append file using VB6



Add lines of text to a file

Private Sub Form_Load()
'Replace 'c:\test.txt' with the name of the file you want to edit.
Open "c:\test.txt" For Append As #1
'Replace 'new line added' with the line you want to insert to the file.
Print #1, "new line added"
Close #1
End Sub



-KISHOR M SONAWANE
 code for HAL

1 comment:

  1. Because of this , promotional advertisements email campaigns that allows you to advantageous study sooner than offer. In other words to put in writing more practical space something like this. Branded Logo

    ReplyDelete

Thank You!!!

create and activate a Python virtual environment on macOS and Windows

create and activate a Python virtual environment on macOS and Windows: Prerequisites: Python 3: Ensure you have Python 3 installed. You ca...