I am creating an Excel Add-In with VSTO and C#, and I would like to set the directory where the Add-In resulting files are saved (their filenames are programmatically generated).
I tried using SaveFileDialog saveDlg = new SaveFileDialog();
in my C# file but the Save File As Dialog didn't enable me to select a directory…
Could you help me with the properties of saveDlg
that I must set?
Thank you?