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.
The next big software update for iPhone is coming sometime in April and will include a Food section in Apple News+, an easy-to-miss new Ambient Music app, Priority Notifications thanks to Apple Intelligence, and updates to apps like Mail, Photos, Podcasts, and Safari. See what else is coming to your iPhone with the iOS 18.4 update.
Comments
Be the first, drop a comment!