When you press the Button, Button1, it'll show you an OpenFileDialog
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click OpenFileDialog1.Title = "Please Select a File" OpenFileDialog1.InitialDirectory = "C:temp" OpenFileDialog1.ShowDialog() End Sub
That's the code for my open file dialog, and now I'm confused as how to have the file opened using that file open dialog open up into the TextBox1.Text area.

New Topic/Question
Reply




MultiQuote





|