Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
108 views

C# SaveFileDialog in specific folder

I use SaveFileDialog to select the path where I want to save a file. I set InitialDirectory to some folder, but I want to limit the save locations to that folder or subfolders of that folder. Is this ...
8
votes
5answers
3k views

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 to do it. Using this code: Dim sfd Set sfd = CreateObject("UserAccounts.CommonDialog") sfd.ShowOpen ...
7
votes
3answers
231 views

Any way to circumvent “Dialogs must be user-initiated” exception?

My app has a 'open file' button. Before launching the OpenFileDialog, it asks whether the user wants to save the current file, and if they do, it launches a SaveFileDialog. It then launches the ...
6
votes
3answers
1k views

When does Microsoft.Win32.OpenFileDialog.ShowDialog() return null?

OpenFileDialog's ShowDialog method returns a nullable boolean, set to true if the user clicked OK or false if he clicked Cancel. When does it return null? The documentation does not say.
5
votes
1answer
116 views

Windows dialogs with large fonts

I'm consulting on a large .Net winforms project that has to be able to run in "Touch" mode so it can be operated using a touch screen interface. The application architecture already contains scaling ...
5
votes
3answers
227 views

How to interrupt the window closing mechanism in scala swing

I'm building a GUI with the SimpleSwingApplication trait in scala swing. What I want to do is to provide a mechanism on close, that asks the user (Yes,No,Cancel) if he didn't save the document yet. If ...
5
votes
5answers
2k views

Writing a Text File in memory and saving it with savefiledialog

I am trying to make a text file in memory, add some lines to it and at the end save the file in a text file. I can handle the savedialog part but I dont know how to get the text file from memory. Any ...
5
votes
3answers
988 views

Changing/Adding controls to the windows Open/Save common dialog

Is there a way of changing/adding to the windows Open/Save common dialog to add extra functionality? At work we have an area on a server with hundreds of 'jobfolders'- just ordinary windows folders ...
4
votes
2answers
170 views

What's the most elegant workaround for the lack of DefaultFileName in SaveFileDialog in Silverlight?

The SaveFileDialog in Silverlight lacks a DefaultFileName property, resulting in the user having to enter the file name manually with every file download from a Silverlight application. This is very ...
3
votes
1answer
152 views

C# - Saving values in Listbox

I have the following code: SaveFileDialog saveGC1File = new SaveFileDialog(); private void GCSavePlacementOneButton_Click(object sender, EventArgs e) { // Initialize the SaveFileDialog to ...
3
votes
2answers
462 views

SaveFileDialog: InvalidOperationException due to “owner” parameter in a multi-threaded application

Sorry for the long post, but I tried to explain the problem very detailed so that no confusion should arise. The last sentence contains the actual question. I'm programming a multi-thread application ...
3
votes
1answer
180 views

Unhandled exception when saving to an already open file in silverlight

I am trying to write logic for saving a file to local disk in Silverlight 4.0. I am using the SaveFileDialog class for that. It works fine. But when I am trying to save to a file that is already ...
3
votes
2answers
343 views

empty path name not legal

I have a "save" button so when users click, it will do a saving of xml file(xml serialization). A savefiledialog is used here and when i press cancel without selecting any file an "Argument Exception" ...
3
votes
1answer
1k views

Opening response stream in silverlight

I am attempting to return a image from a server using Silverlight 3. The server returns the Response stream like this: context.Response.ContentType = imageFactory.ContentType ...
3
votes
1answer
497 views

Visual Studio 2008 “Save File As” Dialog Intermittent Issue

Me and a few of my coworkers are experiencing an odd issue in Visual Studio 2008 and Windows 7 (64-bit). We use VSS6 for our source control (unfortunately). We have an issue where we will make a ...
3
votes
1answer
797 views

Open File Instead of Save File in Silverlight SaveFileDialog

In Silverlight, there is the SaveFileDialog which allows you to save a file to the user's local machine. The dialog opens only allowing you to save the file. What I'm looking for is a way to open ...
2
votes
2answers
86 views

SaveFileDialog fails to return in Windows XP

I'm working with winforms on Windows 7, using C# in Visual Studio 2010. Currently in Windows 7 both install and from debugger the code below works. However, when the program is installed in Windows ...
2
votes
1answer
178 views

How to Prompt Save As Dialog Box After Creating Word Document With Fopen and Fwirte in PHP

I wrote the following script so that an end-user can create a word document from text entered into a textarea: $fp = fopen("yourDoc.doc", 'w+'); fwrite($fp, $wordDoc); fclose($fp); Basically, the ...
2
votes
3answers
180 views

How to close Win32 SaveFileDialog when an error has occurred?

I've run into an issue with the Microsoft.Win32.SaveFileDialog in our Wpf application. If the user enters an enormous file path, above the allowed maximum (I think its 255 chars?), within the ...
2
votes
1answer
295 views

Save file dialog in MVC

How to create save file dialog in MVC application? I couldn't find any example. Thanks in advance.
2
votes
5answers
605 views

A Generic error occurs at GDI+ at Bitmap.Save() after using SaveFileDialog

I use the following code block with some more code inside the using block: using (System.Drawing.Bitmap tempImg = ...
2
votes
1answer
3k views

save file dialog and export to excel sheet

I had datagrid view and I had export to excel sheet the code worked well but when save as dialog apeared and saved file I couldnot find the file and no error apeared. private void ...
2
votes
1answer
183 views

How do I write a file to the response stream and have a 'Working' modal window show/hide?

I need to to export a file to the user. It takes 1-2 min to generate the file so I'd like to have the page go into a kind-of modal mode with a layover on the page and a 'Working' spinner showing. ...
2
votes
3answers
326 views

Multidot extension for SaveFileDialog in C#?

Basically I'm trying to set the SaveFileDialog's filter like let's say to... "Xml Document (.asdf.xml)|.asdf.xml". It'll filter the files correctly when picking a file, but when actually saving the ...
2
votes
2answers
345 views

How do I save a file generated by an OS X Dashboard Widget?

I've got a web app that I'm porting to an OS X Dashboard widget. The web app generates some data on the client side using JavaScript, and then, when the user wants to save it, sends it to a ...
2
votes
2answers
2k views

Save file dialog - path not working

App.config: <add key="SaveDraftPath" value="C:\Drafts\"/> C#: var saveDraftPath = ConfigurationManager.AppSettings["SaveDraftPath"]; var sfDialog = new SaveFileDialog(); ...
2
votes
1answer
2k views

(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. like MSPaint's "Save As" operation.) With TSaveDialog and setting ...
2
votes
2answers
172 views

Customized Windows Save Dialog is no Longer Fancy — Why?

In accordance with this question I am customizing a Win32 Save File dialog with a custom template description. Now I have a problem where the Save File dialog doesn't show the left-hand bar with my ...
2
votes
1answer
356 views

How to save a picture from a partial trust XBAP app?

I have an XBAP app, which shows some pictures, and my users would like to save some of them to disk. But my XBAP app runs in the partial trust mode, so it can't initiate SaveFileDialog, not to mention ...
2
votes
3answers
2k views

System.Windows.Forms.SaveFileDialog does not enforce default extension

I am trying to make SaveFileDialog and FileOpenDialog enforce an extension to the file name entered by the user. I've tried using the sample proposed in question 389070 but it does not work as ...
2
votes
7answers
320 views

Detecting whether or not file has been served to the browser?..kinda

I have a button which sets window.location to a php file which generates a feed which is then downloaded. However, as the files vary in size due to what data is put into the feed it can sometimes take ...
2
votes
2answers
601 views

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 type section the file to be saved as .dat with the following code. sfdialog.Filter = "Data Files ...
2
votes
3answers
1k views

How can I change the extension of the file name in a SaveFileDialog when the user changes the filter?

We have an SaveFileDialog in our application, which offers a variety of formats the user can export media in. We determine the user's choice of format using the FilterIndex property of the ...
1
vote
2answers
76 views

Get only name from Save File Dialog

How do I get file name only by using Save File Dialog? MessageBox.Show("File was created with name: " + SOME CODE HERE + Environment.NewLine + Environment.NewLine + "You can ...
1
vote
1answer
149 views

download file from absolute uri to stream to SaveFileDialog

I've gotten as far as putting a file into a stream from a url. However puttin savefiledialog inside the event OpenReadCompleted gives an exception because the savefiledialog needs to be fired from an ...
1
vote
2answers
48 views

How to save a Form using SaveFileDialog

If i have a program which draws rectangles, circles and lines and i want to save the picture which the user has drawn on the form using SaveFileDialog, how would this be done? I know how to save a ...
1
vote
0answers
87 views

How to detect file is open with silverlight saveDialog for C#?

If a file is open by another application, and then I try to save it through the Silverlight SaveDialog, I can catch the error with an exception but after that I get this error. Line: 57 Error: ...
1
vote
0answers
92 views

Immediate Save Dialogue to Download HTML5 Canvas Image - Not Saving on Server

I am working on a purely JS/HTML page where the user can upload an image and the image is converted to canvas data and displayed. Then the user can click on a button to have alterations performed to ...
1
vote
2answers
217 views

Qt customizing save file dialog

I need to customize default Qt save file dialog: add some options in it. For example, adding some checkboxes with my own values in it between file type and save/close buttons. Have Qt any ways to do ...
1
vote
0answers
145 views

Application Level Hook for OpenFileDialog and SaveFileDialog

Hi everybody at stackoverflow! I'm developing a C# Windows Forms Application using .NET 4 and I am facing a very interesting requirement. What happens is that I'd like to have two kinds of ...
1
vote
0answers
70 views

Set SaveFileDialog.InitialDirectory to networked file location

I'm using the Microsoft.Win32.SaveFileDialog class. When I set the InitialDirectory to a networked location (E.g. "\localhost\Share\") it opens up to the Documents folder instead of the networked ...
1
vote
3answers
406 views

Forcing “Save As” dialog via jQuery GET

I'm calling a jQuery "GET" on the test.php file code below. I'm trying to get the script to pop a "Save As" dialog on the resulting test.ini file to allow it to be saved locally. However, although I ...
1
vote
1answer
321 views

Struts 2 Automatically Open .doc or .docx On Download

Might be a duff question, but I'm tired of googling... I'm working on a Struts 2 Web App that lets users edit .docx files, which are stored on the server. For example, the user clicks EDIT, then the ...
1
vote
3answers
194 views

Using SaveFileDialog in C#/.NET producing “Instances of abstract class cannot be created” error

So I have been struggling to create a "Save" button in my .NET application. I seem to be doing everything correctly according to my research. I have been referring to this article as a main source: ...
1
vote
2answers
380 views

WPF SaveFileDialog DefaultExt ignored?

var dlg = new SaveFileDialog(); dlg.FileName = "graph"; dlg.DefaultExt = ".bmp"; dlg.Filter = "PNG|*.png|DOT|*.dot|Windows Bitmap Format|*.bmp|GIF|*.gif|JPEG|*.jpg|PDF|*.pdf|Scalable Vector ...
1
vote
2answers
147 views

Appending filename of savedialog to the file wich is going to be saved

I am trying to append the name of file in the first line of my text file which is going to be saved. how can I do it? here is a the code. I couldnt find a method for stringbuilder to append at the ...
1
vote
1answer
134 views

Saving application specific save files C# visual studio

I have created an application in C# with visual studio. The application has a Save dialog box which saves to an xml file and a Load dialog box which loads the xml data into the application. This all ...
1
vote
1answer
735 views

Multiple types in a SaveFileDialog filter

In my SaveFileDialog I have multiple types in the filter, however when viewing the dialog if I choose a filter to view files of that type in the directory I am only able to see files for the first and ...
1
vote
2answers
523 views

Javascript saveas dialog

I am trying to write save as dialog with javascript, I have a content of data, and I want to allow the user to save it, I managed to get the code below to work, but this code is changing the html ...
1
vote
3answers
267 views

Change default arrangement of Save and Cancel buttons in SaveFileDialog

I m coding in c# and I want to change the default arrangement of 'Save' and 'Cancel' buttons in SaveFileDialog. The default arrangement is that the 'Save' button is above the 'Cancel' button. What I ...

1 2 3