Jump to content

[VB] Simple Saving


Recommended Posts

Simple Saving

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 :rolleyes:?

got any questions go right ahead and next i will have an open function tutorial

Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...