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

learn more… | top users | synonyms

0
votes
2answers
21 views

SaveFileDialog disables webpart buttons in Sharepoint using C#

I have button that opens a saveFileDialog to save a downloaded file to a clients PC. After you save the file, or press cancel, the buttons on the web-part becomes unresponsive. Why does this ...
0
votes
0answers
29 views

open save dialog box on clicking of button?

I want to open save dialog box on click of button as we do for saving any image in paint. I know it's not possible with javascript How to prompt browser to display open/save dialog box using jquery? ...
0
votes
1answer
8 views

Can you save a file on the local drive through RemoteApp instead of saving to server drives?

I have an application written in C# WPF, and saving a generated Word document. Through the RemoteApp settings, I've set to show the local user's logical drives, but they don't have letters next to ...
-1
votes
1answer
31 views

Why does my SaveFileDialog display again if cancelled?

I have a SaveFileDialog in my program. The issue is that when I click "Cancel" on the dialog, another SaveFileDialog opens up. But when I click cancel on the second SaveFileDialog, a third does NOT ...
0
votes
1answer
35 views

change name of file in SaveFileDialog

in my WinFormsApp user can add picture in a folder of hardDrive with SaveFileDialog. if there is a picture the same name as new picture an alert is shown that user must rename the new picture. how ...
0
votes
1answer
57 views

How to save an image from a picturebox to jpg

I have been able to save a file as a .jpeg, but the image won't load, has anyone got a suggestion? Private Sub Btnconfirm_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ...
1
vote
2answers
38 views

Save dialog doesn't add extension to file

I have a button that opens a save dialog window with default extension filters set. When I save a file it creates it in the correct folder, but it doesn't add the extension on the end. How would I go ...
0
votes
1answer
45 views

Save File Prompt instead of FileWriteAllBytes

Long time lurker first time poster. Working with .Net / Linq for just a few years so I'm sure I'm missing something here. After countless hours of research I need help. I based my code on a ...
0
votes
0answers
36 views

IE save target as for a pdf file

In IE if i open any link of an pdf file it opens in the browser itself due to association. But i want it to open a save window asking user where to save(same as save target) using command line. How it ...
0
votes
0answers
75 views

To save Image selected from the application to local folder using c# wpf

I'm new to WPF... I want to save a selected image to a local folder in my system. I tried doing this by saving to a memory stream and system,drawing,image.save concept .....the problem here is I ...
0
votes
1answer
21 views

SaveFileDialog file extension is default Excel version

I have the following code that saves the file in the default Excel version ona given user's machine. xlWorkBook.SaveAs("c:\\AMORT_data", Excel.XlFileFormat.xlWorkbookDefault, misValue, misValue, ...
0
votes
2answers
205 views

Attempted to read or write protected memory. This is often an indication that other memory is corrupt

I'm working on a windows form project and it creates a PDF file. I want to save file where user want it to. I use a SaveFileDialog for this. When I click "Save as a PDF" button on my form I get this ...
0
votes
1answer
45 views

How to get the value of the selected check-box and save them in XML format using save dialog box

I have an application where I have different checkboxes placed in JTable. I want to get the selected values of the column to create an xml file based on the value selected by user. There are ...
1
vote
2answers
180 views

Displaying Save File Dialog in Asp.net web page

I have a ASP.net page which writes a file to the local disk. I want to present the user a Save File dialog box and allow him to set the path to the folder. I know code like below can be used; ...
0
votes
1answer
219 views

save as dialog box to save a PDF file

I am trying to display a save as dialog box to save a PDF file. This should happen on click of a link in the JSP. On click of this link I call a struts action which prepares PDF and forwards to ...
2
votes
2answers
43 views

C Returned char from GetSaveFileName() contains null characters

I'm using the following code to get the filepath to save to for use with tinyxml2: OPENFILENAME ofn; char szFileName[MAX_PATH] = ""; ZeroMemory(&ofn, sizeof(ofn)); ofn.lStructSize = ...
1
vote
2answers
120 views

How do I show the name of the current open file in the Form title?

I'm making a text editor and I'd like to display the name of the current open file in the Form title (like Notepad does where it says "Untitled - Notepad" or " "File - Notepad"). I'm assuming this is ...
0
votes
1answer
33 views

I'm trying to stop SaveFileDialog from being prompted from elseif DialogResult.No (and cancel)

Basically I'm a beginner at this sort of thing, and I'm trying to practice by creating my own Note Pad application, by similarly replicating Microsoft's Notepad. I have searched online for hours to no ...
1
vote
0answers
24 views

Adding help to a WPF-style SaveFileDialog

Using the old WinForms dialog it is possible to add a "Help" button to the SaveFileDialog: var dialog = new System.Windows.Forms.SaveFileDialog {ShowHelp = true}; dialog.HelpRequest += (o, e) => ...
0
votes
0answers
20 views

Wordpress plugin, string to save file dialog

I'm building a plugin for wordpress. I generate a XML-formatted string, and I want the user to get a "Save file"-dialog with this string as file content. Since headers allready has been sent, i can't ...
0
votes
2answers
190 views

Response.WriteFile() — not working asp net mvc 4.5

I've looked at many resources and the following should work, however my save as dialog box is never showing (not browser specific): Response.ContentType = "application/octet-stream"; string ...
0
votes
1answer
196 views

FileChooser method showSaveDialog( ) does not save file javafx?

How does the showSaveDialog( ) method work? I know it returns the selected file but why does it not save the file? Below is an extract of code I found online. buttonSave.setOnAction(new ...
0
votes
2answers
158 views

Saving contents of rich textbox to file, perserving multilines

Ok so I'm trying to make a simple text editing program and I got the files to save, but the problem is that all line breaks are removed in the saved file ie text as it appears in the text editor ...
0
votes
0answers
126 views

Access real directory path from SaveFileDialog in Silverlight

I have an issue with Silverlight application and SaveFileDialog. Basically I'm using SaveFileDialog in order to get from user path where he wants to save file and what is the file name. Then I'm ...
0
votes
1answer
469 views

How do I use savefiledialog in vb.net

I have a program called TextEditPro and I just started it, I'm running into a problem. When I had the code for clicking Save As... I don't know how to use the savefiledialog so when you click Save ...
2
votes
1answer
66 views

File name get different file extension when constructing from date

I am trying to save file with text to specific location: saveFileDialog.FileName = "Info_" + System.DateTime.Now.ToString("yyyyMMddhmmss" + ".txt"); string Info = ""; TextFormat(ref Info); ...
-1
votes
1answer
228 views

how to download file from server to client machine into default folder set in browser without save/open dialogue?

In my jsf application files names are displayed using datatable component with checkbox option for each files and their is a single download button. When user select any file and click download button ...
2
votes
3answers
133 views

SaveFileDialog Save Button Event

Okay I have this scenario over here. I'm pointing a URL to users to allow them to start the download. The download button has a navigateURL with something like www.mydomainname/files/abc.mp3. So when ...
0
votes
1answer
85 views

Duplicate “already exists” dialogs when I use SaveFileDialog and Excel.SaveAs

I am programmatically creating an Excel file with the Microsoft.Office.Interop.Excel framework. When it comes time to save, I want to give the user the choice of naming and save location, so I am ...
0
votes
1answer
414 views

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 how to check for an existing folder\file, and create or append the folder\file ...
0
votes
2answers
119 views

File not getting saved in specified location in winforms c#

Eventhough i specify a different location the file gets saved in mydocuments. How to resolve this issue. Pls share your ideas if any.Here is the code. if (externalButton.Checked == true) ...
0
votes
0answers
65 views

Show “virtual” folder in My Computer

My application connects to a service to send and receive data. I have the option of allowing my users to store their application configuration on the host server in an xml document. This allows them ...
1
vote
1answer
96 views

VBS - display multple filetypes in save dialog

I got the following code to open the save dialog with one FileType: Set objDialog = CreateObject("SAFRCFileDlg.FileSave") objDialog.FileName = "Automatic Generated Presentation" objDialog.FileType = ...
1
vote
3answers
301 views

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 the contents of a multi-line text box. The program seems to work fine up until the save dialog, ...
0
votes
0answers
127 views

Using Ajax.ActionLink to Save File Dialogue

User doesn't get a Save File Dialogue after POST with an Ajax.ActionLink. MVC ASP.NET VB.NET web app that is working with an HTML.ActionLink. The user clicks the link, server queries DB, creates a ...
0
votes
2answers
98 views

Unexpected characters in saved file using SaveFileDialog

Code: private void btnSaveFile_Click(object sender, EventArgs e) { listBox1.MultiColumn = true; SaveFileDialog sfd = new SaveFileDialog(); sfd.Filter = "Text File|*.txt"; if ...
0
votes
0answers
62 views

Validate filename in SaveFileDialog FileOk handler

When the user types a filename into the SaveFileDialog, I append my own extension to this by setting the AddExtension property and the appropriate filter. This works great for everything except when ...
0
votes
1answer
79 views

modify or create SaveFile dialog in wpf or winform

For my application I would like to use the SaveFile dialog box. on SaveFile dialog i just want to let the user select location to save and hide the file name and save as type. How do I achieve this? ...
0
votes
1answer
464 views

JFileChooser Save Dialog Suggest File Name [duplicate]

Possible Duplicate: JFileChooser.showSaveDialog(…) - how to set suggested file name I have seen this question asked a few times but no answer has been any help to me. I want the save dialog ...
0
votes
1answer
720 views

C# - Save a Multi-Line Textbox to a text file

I am creating a small app for personal use that allows me to clean my lists of objects. I am using a variety of filters to get a finalized list in a multiline text box. When i am finished, I use the ...
0
votes
1answer
174 views

Textbox not displaying given string

The title of my question seems simpler then my problem really is. What I am doing is trying to put a string into my textbox, but it won't go in. I'm doing this by passing the string from one class to ...
3
votes
1answer
35 views

using VW7.8/Jun789 JunFileDialog for file save and want to remember selected directory for next time

I am using VW7.8/Jun789 JunFileDialog for a file save as and want to remember/set the selected directory for next time. I am following JunFileDialog class example5. I suppose doing so in the onAccept: ...
-1
votes
1answer
444 views

File does not exist verify if file name exist SaveFileDialog?

I want save file using SaveFileDialog. Why i must need exist file to save ? string month = dateTimePicker1.Value.Month.ToString(); string year = dateTimePicker1.Value.Year.ToString(); SaveFileDialog ...
0
votes
2answers
216 views

OpenFileDialog causes WPF app to crash

In my WPF Application I used OpenFileDialog to select an image and load it to app, this works fine as expected. But if I run same app from a flash drive, image loades after that UI freezes, any ...
2
votes
0answers
99 views

Google maps gpx export - save dialog in JavaScript

I'm working on a GoogleMaps project and want to offer the users to save the current route as a GPX-file. I haven't found any function or possibility to do that. So I thought maybe to go through the ...
1
vote
1answer
452 views

How to save a PictureBox image in varying formats?

I have a picture box that will contain an image generated during run-time. I need to save this image using a SaveFileDialog, for which I have found the fallowing code: private void ...
0
votes
1answer
109 views

VC++ iostream/savefiledialog error

I'm using the SaveFileDialog class example to combine use create a text file in a user defined directory. Here's the conflicting part of my code: private: System::Void button1_Click(System::Object^ ...
5
votes
3answers
600 views

SaveFileDialog of silverlight is giving error “Dialog must be user-initiated”

I am getting an error: Dialog must be user-initiated when I am opening the savefile dialog from my silverlight applicaiton I am using below code Main Button click event : private void ...
0
votes
0answers
120 views

Open, Save & Close file window in silverlight applicaiton

I am working on a silver light application, I want to give a file open & save window to user just like asp.net web application, How can I give do this functionality in silver light application. i ...
0
votes
1answer
73 views

'Random_Number_File_Writer.Form1' does not contain a definition for 'saveFileDialog1_FileOk'

'Random_Number_File_Writer.Form1' does not contain a definition for 'saveFileDialog1_FileOk' and no extension method 'saveFileDialog1)_FileOk' accepting a first argument of type ...

1 2 3 4 5