Header Banner
wonderhowto.mark.png
Gadget Hacks Next Reality Food Hacks Null Byte The Secret Yumiverse Invisiverse Macgyverisms Mind Hacks Mad Science Lock Picking Driverless
Home
VB.NET

How to Use save file and the stream writer in VB.Net

Apr 4, 2010 12:50 AM

This video takes us through the process of using the Stream Writer and the Save File Dialog

Step 1

First thing you need is a Button. Click "Button" in the toolbox. Next click "Text Box" and drag it so that it has multiple lines.

Step 2

Rename the button, in this case to "SaveTheText," and in the same menu we are going to rename the caption or text from "Button 1" to "Save It"

Step 3

Click on Text Box and rename it, in this case to "TheText"

Step 4

In the toolbox, click SaveFileDialog.

Step 5

Rename SaveFileDialog to "SaveIt"

Step 6

Double click the SaveIt button and under the line beginning with "Private Sub," enter the following text:

SaveIt.InitialDirectory = "C:\"

SaveIt.FileName = "Save As…"

SaveIt.Filter = "Text Files ONLY (*.txt) | *.txt"

SaveIt.ShowDialog()

Step 7

Below this text, we are going to declare a variable by entering the following text:

Dim W As New IO.StreamWriter(SaveIt.FileName)

W.Write(TheText.Text)

W.Close()

Step 8

Click "Start Debugging." Enter some text on the first couple of lines of the text box. Click SaveIt and file dialog will pop up. Save as whatever you like (in this case ATest).

Step 9

Go to C drive and click on the text document. It should have the text that you entered in the program.

You already know how to use your phone. With Gadget Hacks' newsletter, we'll show you how to master it. Each week, we explore features, hidden tools, and advanced settings that give you more control over iOS and Android than most users even know exists.

Sign up for Gadget Hacks Weekly and start unlocking your phone's full potential.

Related Articles

Comments

No Comments Exist

Be the first, drop a comment!