Questions tagged [save-dialog]
24 questions
0
votes
4 answers
Very strange error in my app from component
Ok my application does everything that is it suppeded to do and it does the same thing every time so its not as if testing was gone be that much trouble.
it crashes "somtimes" not always. it does this when i hover the mouse over a file in the open…

Arthur
- 3,376
- 11
- 43
- 70
0
votes
0 answers
Handle temporary Word documents
My app creates temp documents and opens them as follows:
string tmpPath = System.IO.Path.GetTempFileName().Replace(".tmp", ".docx");
SaveDocument(tmpPath); // saves some in-memory to the tmp path so I can open it using…

neggenbe
- 1,697
- 2
- 24
- 62
0
votes
2 answers
How to save Image in a user selected format using FileChooser in javaFx?
I am trying to save image in a user selected format from FileChooser SaveDialog. Here's my code:
java docs says the same thing for both get and set methods I dont get it.
File f1 = new File("C:\\Users\\KIRAN\\Desktop\\Andromeda1.png");
…

Can'tCode
- 43
- 10
0
votes
1 answer
WINAPI save dialog opens twice when clicking on EDIT control
I have an Win32 EDIT control with an assigned ID (IDC_FILE_NAME_INPUT) and I want the Save Dialog to open up when this control is clicked.
I handle this in the WM_COMMAND message of the window processor:
case WM_COMMAND:
{
switch…

ali
- 10,927
- 20
- 89
- 138
0
votes
0 answers
Save file in selected location
On site (ASP.NET) i have table with items. Every item has link to specific pdf. This pdf i generate from binary data that are saved in database. So realy, i don't have path to pdf file.
When i click on link, i want to download file. And this…

demo
- 6,038
- 19
- 75
- 149
0
votes
1 answer
Word 2013 Macro Save as Text - suppress dialogs
I am batch converting many word 2013 documents to text and saving them with the ActiveDocument.SaveAs2 command. Does anyone know of a way to suppress nag dialogs such as "the document may contain text content that will be lost upon conversion..."…
0
votes
3 answers
How do I use a Save Dialog Box in C# to save an ASCII text file?
Okay, I'm probably missing something really simple here, but I've been at this for over an hour now and getting nowhere. :( I have a C# project using Microsoft's Visual C# 2008 Express Edition. The Save dialog box appears as desired, but it never…

Jim Fell
- 13,750
- 36
- 127
- 202
0
votes
2 answers
How To Customize A JFileChooser
I want to customize my JFileChooser so that instead of saying "Folder Name" at the bottom I want to set it to say "Picture Name" and at the text field I don't want that to change based on where i'm clicking, i want it to just stay blank the whole…

ndfkj asdkfh
- 316
- 1
- 5
- 15
0
votes
0 answers
How to prompt the user to choose where to save a file using PHP?
When I search for an answer from the web, most suggest using header() function, like the following:
$testing = $_REQUEST['filename'];
header("Content-type: application/csv");
header("Content-Disposition: attachment;…

cytsunny
- 4,838
- 15
- 62
- 129