Re: SaveFileDialog question
The SaveFileDialog is merely an interface to allow the user to select a location for saving a file. It's then up to you to do the saving. The path selected by the user is returned by the SFD's FileName property, so you use that as the path to which your code saves the file.
Re: SaveFileDialog question
But they can choose the filename or can you lock that out so the cannot enter any info. I know I could just take the path and add my filename but if they are expecting the filename they put then it could be confusing for them.
Re: SaveFileDialog question
If you want the user to select a folder then use the FolderBrowserDialog, not the SaveFileDialog.