You can use that Drives collection I mentioned for the drive letters like I said

vb Code:
  1. For Each Drive As IO.DriveInfo In My.Computer.FileSystem.Drives
  2.             MessageBox.Show(Drive.Name)
  3. Next