TOGGIT - IN SEARCH OF CERTIFICATION
 TOGGIT
     IN SEARCH OF CERTIFICATION
    
     
  
TOGGIT IN SEARCH OF CERTIFICATION

Visual Basic .Net Sample Code and Applications

MAIN
Logon to ToggIT
Join ToggIT
Home
Home
Contact Us
Career Building
Certification Maps
Partners
Technopedia
.Net Source Code
Free Networking Tools
Free IT Publications
Microsoft
2003 Certifications
270 Win XP Pro
290 2003 Server
291 2003 Network Inf
293 Plan Network inf
294 2003 Active Directory
224 Exchange 2000
DBA Certifications
228 SQL 2000
229 SQL 2000
MCSD Certifications
526 Windows Apps
305 ASP.NET
2000 Certifications
210 Professional
215 Server
216 Network inf.
217 Directory Svc.
218 Managing 2K
219 Design Dir Svc.
220 Design Security
270 Win XP Pro
221 Design Net Inf.
Cisco
CCNA
CompTia
A+ Hardware 2003!
A+ Software 2003!
Network+
Security+
New Wireless
CWNP program
Java 
Java Goodies 



MCSE Top-Rated Sites



 

Join Toggit Now!
Avoid Annoying Ads!

 Your Email:

 New Password:

See the list of .Net articles
Reading and Writing to a file in Microsoft Visual Basic.NET

How do you read from and write to a text file in Visual Basic .NET?. The two examples here demonstrate reading from a file using a FileStream and
 

This code assumes that you have a string variable named FileName and a textbox named Textbox1. To see the text in the textbox, you should set the Multiline property to true and the scrollbars property to vertical on the textbox.

Reading a text file:
 

Dim FileName as string = "C:\MyFolder\MyFile.txt"

Dim FS As New IO.FileStream(FileName, IO.FileMode.Open)
Dim SR As New IO.StreamReader(FS)
TextBox1.Text = SR.ReadToEnd
FS.Close()
 


How does it work?

The System.IO namespace is full of classes to help you access file resources. Here we use a FileStream to attach to, and open a file. The FileStream provides access to the file, but you need a StreamReader to get the text from the file and place it in your textbox. The Stream reader's ReadToEnd method reads the entire contents of a file as a single string, placing it into TextBox1.

To write the file back, we use the same steps, only with a StreamWriter. Notice the the StreamWriter is flushed before the FileStream is closed. This ensures that the StreamWriter has a chance to finish writing before the connection to the file is closed.

Writing a text file:
 


Dim
FS As New IO.FileStream(FileName, IO.FileMode.Create)
Dim SW As New IO.StreamWriter(FS)
SW.Write(TextBox1.Text)
SW.Flush()
FS.Close()
 
 

Study and Research resources:
Microsoft Certification Info:
 
See the list of .Net articles

 

TOGGIT      IN SEARCH OF CERTIFICATION

All information on this site is copyright ToggIT.com unless otherwise specified. Material submitted or posted this site may also contain materials that are copyrights of individual contributors. It is illegal to copy, publish, reproduce, or distribute any materials from this site with the express permission of the owner of this material.

The material on this web site is not sponsored by, endorsed by or affiliated with Microsoft, Inc, CompTIA, or Cisco Systems, Inc. Microsoft, Inc.® ,Windows XP, Windows 2000, Windows 2000 Server, Windows 98, Windows NT, Visual Basic, Visual C++, Visual FoxPro, SQL server and Microsoft logos are trademarks or registered trademarks of Microsoft,  Inc. in the United States and certain other countries. A+, Server+, and Network+ are all registered trademarks of CompTIA. CCNA, CCNE, and the Cisco logo are all registered trademarks of Cisco Systems. All other trademarks are trademarks of their respective owners.