OpenDirectoryDialog?

  • Thread starter Thread starter Jim in Arizona
  • Start date Start date
J

Jim in Arizona

There doesn't seem to be a control that I can use for selecting a directory
and having that directory path populate a text box, like I would with the
OpenFileDialog control, like so:

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button2.Click
OpenFileDialog1.ShowDialog()
txtPhotosDirectory.Text = OpenFileDialog1.FileName
End Sub

Any suggestions?

TIA,
Jim
 
Back
Top