If your thought of making a simple notepad like program but don't know how to output the text well heres a quick and simple guide on how.
Make sure for this example, have a textbox with multiline set to true and a command button
Open "c:\test.txt" For Output As #1 Print #1, text1.Text Close #1
Quick Code Explanation
Open "c:\test.txt" For Output As #1
This will open or create the file c:\test.txt (if it exists already, will overwrite the existing file data)
Print #1, text1.Text
This simply means it will print all the data from the textbox, in this case from text1
Close #1
This will close the file
Quite Simple huh
got any questions go right ahead and next i will have an open function tutorial



Help
Back to top








