savefiledialog Questions

3

I am working from the sample project here: http://www.codeproject.com/Articles/8086/Extending-the-save-file-dialog-class-in-NET I have hidden the address/location bar at the top and made other mod...
Caecum asked 28/4, 2014 at 7:19

1

Solved

I have created Filter with this code: saveFileDialog1.FileName = "SimplifiedLog"; saveFileDialog1.Filter = "RichTextFormate | *.rtf |Text Files | *.txt |All Files| *.*"; saveFileDialog1.Title = "S...
Noted asked 4/5, 2014 at 10:26

6

Solved

I need to implement something similar to Notepads' save option. Assuming I have a button placed next to a RichTextBox, what I want is, when this button is clicked, a Dialogue box will open up, whic...
Whisk asked 14/9, 2011 at 11:55

2

Solved

I have a save file dialog and i want to get only the filename entered. Equivalent for openfiledialog.SafeFileName; Save file dialog has no SafeFileName Property and FileName returns both ...
Polyphagia asked 14/8, 2013 at 21:17

1

I am implementing code to automatic download files from client site without manual step using C# code. My requirement is to save the files through C# code by passing path without save file dialog....
Chromate asked 9/7, 2013 at 8:7

1

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 Sav...
Etherege asked 2/3, 2013 at 1:15

2

I am trying to write a local file with Flash Player 10+ using the FileReference class, following the format from this blog post by Mike Chambers: http://www.mikechambers.com/blog/2008/08/20/reading...
Doubletalk asked 1/2, 2012 at 19:6

3

Solved

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 btnS...
Yogurt asked 23/11, 2012 at 13:31

1

Solved

I want to save an image which has two options (.Png or .Jpeg),so i need to display only files with Png and Jpeg format, like when we choose Save type as All Images it displays all kind of images in...
Grunion asked 16/5, 2012 at 2:8

5

Solved

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 inte...
Sequoia asked 21/10, 2009 at 6:23

3

Solved

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 th...
Euphroe asked 9/1, 2012 at 13:37

1

Solved

I want to automate the download of an exe prompted from a link from the client side. I can get the first redirected link from http://go.microsoft.com/fwlink/?LinkID=149156 to http://www.microsoft.c...
Uptodate asked 21/12, 2011 at 22:46

3

Solved

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 Ope...
Plato asked 4/11, 2011 at 10:1

1

Solved

I have some buttons on my WPF UI and I also need to choose files from time to time. I kept noticing strange problems where when I double-click an item in the file dialog, a button on the main UI wo...

2

Solved

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 ...
Dulaney asked 15/9, 2011 at 6:16

5

Solved

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. A...
Dufrene asked 18/4, 2011 at 12:31

2

Solved

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...
Wilscam asked 10/4, 2011 at 14:21

6

Solved

I want to stop popping of file replace dialog at SaveFileDialog using Windows API method calls. I just want to do this because I create a new folder with the file name given by the user, thus exsis...
Mount asked 1/4, 2011 at 11:31

1

Solved

I've got an application which opens a csv file and displays all the contents into a formatted datagridview. From there I have a button which opens another form that contains a series of checkboxes....
Pauwles asked 31/3, 2011 at 2:15

2

Solved

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...
Jacobsohn asked 23/3, 2011 at 11:6

3

Solved

In my main Form I have a method called SavePDFDocument(): private void SavePDFDocument() { PDFWrapper pdfWrapper = new PDFWrapper(); pdfWrapper.CreatePDF(horizontalPictureScroller1.GetPictures()...
Clyster asked 3/12, 2010 at 0:42

3

Solved

I'm on Vista and I'm using Microsoft.Win32.OpenFileDialog class. When I call ShowDialog() I get the old XP-style dialog: How do I get the new Vista-style dialog with fallback to the old one on W...
Preparation asked 7/10, 2010 at 19:37

2

Solved

This question has been answered. I've improved the code a bit (at least I think so). It now reminds of the aceepted answer to the question Open file in rich text box with C#. If I haven't made any ...
Inadvertence asked 20/9, 2010 at 13:31

1

Solved

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...
Dribble asked 21/10, 2009 at 8:46

3

Solved

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.
Brougham asked 11/8, 2009 at 17:43

© 2022 - 2024 — McMap. All rights reserved.