I am using the following to allow users to pick a file from their computer, however at the moment all it does is allow them to pick a Folder path but not a File and path.
Any ideas on how to make this work how I want?
VB Code:
Dim FilePath As String Me.FolderBrowserDialog1.SelectedPath = "C:\Windows" Me.FolderBrowserDialog1.ShowDialog() FilePath = Me.FolderBrowserDialog1.SelectedPath.ToString





Reply With Quote