Rich Text Input output in VB.NET

vidiware

Freshman
Joined
Dec 3, 2002
Messages
39
Hi, can anyone tell me how i can read the file C:\image.txt
with the Rich Text thing, edit it and then save it as C:\image2.txt?
 
Rich Text Boxes should only be used if you want to make a Rich Text Processor, otherwise just use a standard TextBox. VS.Net is refusing to start at the moment but try this:
Visual Basic:
RichTextBox1.Open "C:\Image.txt"
If you use a standard TextBox you'll need to StreamReader it
 
Back
Top