/ Published in: VB.NET
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
On Error GoTo E Dim openit As New OpenFileDialog openit.ShowDialog() Dim readit As New System.IO.StreamReader(openit.FileName) RichTextBox1.Text = readit.ReadToEnd Exit sub E: End sub