/ Published in: VB.NET

Expand |
Embed | Plain Text
On Error GoTo E Dim openit As New OpenFileDialog openit.ShowDialog() Dim readit As New System.IO.StreamReader(openit.FileName) RichTextBox1.Text = readit.ReadToEnd readit.Close() Exit sub E: End sub
You need to login to post a comment.