How do I make my application store the last path opened in openFileDialog and after new opening restore it?
openFileDialog
OpenFileDialog openFileDialog1 = new Ope
if your using
Dim myFileDlog As New OpenFileDialog()
then you can use this to restore the last directory
myFileDlog.RestoreDirectory = True
and this to not
myFileDlog.RestoreDirectory = False
(in VB.NET)