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:
  1. Dim FilePath As String
  2.             Me.FolderBrowserDialog1.SelectedPath = "C:\Windows"
  3.             Me.FolderBrowserDialog1.ShowDialog()
  4.             FilePath = Me.FolderBrowserDialog1.SelectedPath.ToString