Top "Savefiledialog" questions

The SaveFileDialog is a (component) class in the .NET Framework that prompts the user to select a location for saving a file.

How can I prompt a user to choose a location to save a file?

In my main Form I have a method called SavePDFDocument(): private void SavePDFDocument() { PDFWrapper pdfWrapper = new PDFWrapper(); pdfWrapper.CreatePDF(horizontalPictureScroller1.…

c# savefiledialog
Save file with appropriate extension in a Save File prompt

In my application I use a SaveFileDialog to pop up a Save As window. I have restricted in the file …

c# winforms file-extension savefiledialog
How can I use the common Save As dialog from VBScript?

I'd like to have my VBScript display the Windows Save As dialog box, but I could not find out how …

vbscript savefiledialog common-dialog
Writing a TEXT file using C#

I am trying to add a SaveFileDialog to my Windows Application, in which I save a simple text file from …

c# savefiledialog
Save File to MyDocuments + App Folder

I am trying to save my .NET application settings file to the user's %MyDocument%\MyApplication folder, but I don't know …

c# file append savefiledialog appsettings
DialogResult.OK on SaveFileDialog not work

I try, when I press save in SaveFileDialog I do something. I trying fix but always something wrong. SaveFileDialog dlg2 = …

c# wpf dialog savefiledialog dialogresult
How to add Save file Dialog Box using C#

I need to implement something similar to Notepads' save option. Assuming I have a button placed next to a RichTextBox, …

c# wpf richtextbox savefiledialog notepad
How retrieve only filename from save file dialog

I have a save file dialog and i want to get only the filename entered. Equivalent for openfiledialog.SafeFileName; Save …

c# winforms savefiledialog filedialog
(Save Dialog) How to change file extension automatically on file filter change in Vista/Win7?

While showing a save dialog, I want to hook user's filter type change and change file extension automatically. (e.g. …

delphi windows-7 windows-vista savefiledialog save-as
How to do something if cancel button on save file dialog was clicked?

I am using c# WinForms. I have a save dialog box that pops up and a message box after that …

c# winforms savefiledialog