Using OpenFileDialog
ofd1.InitialDirectory = "\" ofd1.Filter = "all files|*.*|TextFiles|*.txt" ofd1.FilterIndex = 1
TextBox2.Text = ofd1.FileName
EndIfWhen the Dialog displays the Folder Dropdown shows 'All Folders' and a bunch of files, however, the dropdown only contains the folder names Contained in 'My Documents'. My question is does anyone know a way to use the openfiledialog to Start at the root of the device so that even 'Storage Cards' can be accessed. What would really be nice if there was and UP that could be selected. All of the examples that I have found use ofd1.InitialDirectory = "c:\" which we all know is not Smart device compatable. I have considered doing it by hand using a combination of 'DirectoryInfo' and then doing the file/directory navigation by hand, but believe there is either a better way, or someone has done this in the past. Thanks,

