2
votes
7answers
244 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
3answers
326 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.
2
votes
3answers
312 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
6answers
88 views
How to set long string(>260) in default FileName in SaveFileDialog?
I am using a SaveFileDialog and have to set long string(longFileName) in FileName. String longFileName is known at Runtime.
If I set
saveFileDialog.FileName = longFileName ;
then I get …
1
vote
1answer
73 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 …
1
vote
5answers
77 views
php - file download box
Hi,
I'm giving a user a link to download a csv file ...just using
Click <a href="report.csv">here</a> to download your file.
This text and link is being displayed in a small popup …
1
vote
3answers
238 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 …
1
vote
4answers
200 views
Creating A New SaveFileDialog
After a lot of thought and consideration, and Google-ing, I'm hell-bent on creating my own SaveFileDialog.
But I do not know where to start and since I haven't seen anything around the web, I would …
1
vote
3answers
210 views
Disabling parts of the SaveFileDialog
Hi,
I'm building an application where I need to use a saveFileDialog. The problem is that I want to restrict the users from using some parts of the saveFileDialog (e.g. I don't want them to edit the …
1
vote
1answer
134 views
Get SharePoint credentials from SaveFileDialog
Hi
I'm creating a client application where the user will be able to open a Windows Forms SaveFileDialog. There the user will enter a specific SharePoint library. Thankfully for me, the saveFileDialog …
1
vote
3answers
174 views
How to use SaveFileDialog asynchronously?
Hi guys,
I have a windows forms application, with a button - on the button's event handler, I need to download a file with SaveFileDialog. But I need to do this asynchronously on a separate thread.
…
1
vote
2answers
118 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 …
0
votes
1answer
6 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 …
0
votes
1answer
144 views
How to replace FileName in SaveFileDialog.FileOk event handler
I'd like to change the file name of the SaveFileDialog in the event handler attached to the FileOk event, in order to replace the file name typed in by the user with another file name in some cases, …
0
votes
1answer
202 views
Problem with SaveFileDialog in Silverlight 3
Hello,
i have weird exception by SaveFileDialog in Silverlight 3. I don't really have a idea where the problem is.
I create instance of SaveFileDialog in Loaded event of user control. After Download …
