Doggie Posted July 4, 2003 Posted July 4, 2003 Simple SavingIf 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 buttonOpen "c:\test.txt" For Output As #1Print #1, text1.TextClose #1Quick Code ExplanationOpen "c:\test.txt" For Output As #1This will open or create the file c:\test.txt (if it exists already, will overwrite the existing file data)Print #1, text1.TextThis simply means it will print all the data from the textbox, in this case from text1Close #1This will close the fileQuite Simple huh ? got any questions go right ahead and next i will have an open function tutorial
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now