How do I make my application store the last path opened in openFileDialog and after new opening restore it?
openFileDialog
OpenFileDialog openFileDialog1 = new Ope
The following is all you need to make sure that OpenFileDialog will open at the directory the user last selected, during the lifetime off your application.
OpenFileDialog OpenFile = new OpenFileDialog(); OpenFile.RestoreDirectory = false;