openFileDialog help needed
-
Hi All, I want to have an .net windows app that starts off with a openFileDialog to choose the file to process. Works fine but I seem to be unable to dispose of the parent form properly. How do I accomplish this?
-
Hi All, I want to have an .net windows app that starts off with a openFileDialog to choose the file to process. Works fine but I seem to be unable to dispose of the parent form properly. How do I accomplish this?
You want to dispose of the parent form, or just hide the form that the open file dialog will lead to? Because if you just hid the receiving dialog, you could just hide the dialog onload and show the openFileDialog. That'd work, right?
-
You want to dispose of the parent form, or just hide the form that the open file dialog will lead to? Because if you just hid the receiving dialog, you could just hide the dialog onload and show the openFileDialog. That'd work, right?
I want to dispose of it after the app ends. It hangs around and doesn't delete itself. Cindylou10