Questions tagged [save-as]

This tag refers to a common UI prompt type that asks a user under what name they wish to save a file as.

Use this tag for questions related to building or using such a prompt.

514 questions
0
votes
1 answer

Why can't I get a file to save in a specific place?

I am using the code below to insert a number from a .txt file, "save-as" the word file using that number as the name, then completing a mail merge. The code worked fine until I had to switch computers, so file locations changed...I obviously…
0
votes
1 answer

ActiveWorkbook.SaveAs excel 2013 1004 error

I am getting a Run-time error '1004' Method 'SaveAs' of object '_Workbook' failed. The code works in excel 2010. I only get this error message in excel 2013. The error message appears after trying to run the follow line. ActiveWorkbook.SaveAs…
Karl
  • 9
  • 1
  • 4
0
votes
0 answers

Can I customize the Save As Dialogs Save-Button in WPF?

Is it possible to customize WPFs Save As-Dialog in a way, so I can add additional Save options like in this mock? I guess, it's not possible out of the box, so I would also appreciate any link/hint on how build your own SaveAs-Dialog.
ASP
  • 773
  • 1
  • 8
  • 22
0
votes
1 answer

Automate Save As File with IUIAutomation in Internet Explorer 9+

There are 63 entries on Stack Overflow related to "IE VBA Save-as" topic. That is to automate the Download Notification Bar of IE 9+. Several methods are recommended to automate this process. Method 1. using XMLHttp (example link, applied to sites…
Valuex
  • 104
  • 1
  • 10
0
votes
1 answer

Saving document using NSFileWrapper

I'm developing an document-based application that allow users to insert images, movies to make compositions. When saving the document, I create a directoryFileWrapper in which I put the xml representation of my project, and one fileWrapper for each…
vtruant
  • 273
  • 1
  • 12
0
votes
2 answers

VBA Macro to download multiple files from links in IE

I want to download multiple files from a list of links. The website where I find the links is protected. This is why I want to use IE (using the current session/cookie). The target of each link is a xml file. The files are too large to open and then…
Uli
  • 33
  • 1
  • 6
0
votes
1 answer

How do I combine alert popup in save as file function in asp.net?

I'm tring to write a function that need to save a file (in csv) and has a condition. it's something like that: If the file is small then 1MB then I want to pop up an alert in javascript and then continue with the save as file commands. What I did…
gadym
  • 125
  • 3
  • 17
0
votes
0 answers

How to make a "Save" button, where the SaveFileDialogue appears once and updates the saved file if clicked again

As the title says, I'm trying to create a "Save" button which will prompt the SaveFileDialogue upon the first click (the user names the file, etc.) and when the "Save" button is clicked again, the file is re-saved (updated) and the SFD isn't…
Kayla
  • 165
  • 2
  • 4
  • 13
0
votes
1 answer

Copy range in worksheet and paste and SaveAs to new user-specified file

I've been looking on StackOverflow for a solution to this problem and I'm almost there but I can't seem to solve my last problem: saving only a specific worksheet to a new file. Basically, what I want to do is the following: User clicks and…
MayankB
  • 15
  • 1
  • 8
0
votes
2 answers

How to disallow people saving the source code of my site?

I know it's impossible. The browser has downloaded all the source codes once it showed it. But if you go to this site using Chrome: http://www.myfreshnet.com/BIG5/literature/plugin/indextext.asp?free=100199307&bookid=100002750 and press Ctrl+S to…
user2335065
  • 2,337
  • 3
  • 31
  • 54
0
votes
1 answer

PHP generated XML file to load correct file type in the save as dialog

I have a PHP file called dynamicxml.php that runs a bunch of code, draws data from a database and creates an XML file. When I right-click and save the link for dynamicxml.php?var=test I need the dialog box to select xml as the default file type and…
Peter Craig
  • 7,101
  • 19
  • 59
  • 74
0
votes
4 answers

Saving notepad file as a .vbs

I'm trying to save some code in Notepad as a .vbs file but for some reason Notepad keeps saving it to my desktop as a .txt, so I can't run the program. I've tried every way of saving it, putting it in brackets when saving, giving it different names,…
ABC Dave
  • 29
  • 1
  • 1
  • 4
0
votes
2 answers

Line break turns to a rectangle symbol when sheet saved as PDF

If I add a vbNewLine, vbCr or vbLf in a cell, and when I convert sheet to a PDF file, either using WorkSheet.SaveAs PdfFile, 17, Worksheet.ExportAsFixedFormat, or manually use Save As or Export they turn into a little rectangle symbol. How do I…
Dmitrij Holkin
  • 1,995
  • 3
  • 39
  • 86
0
votes
1 answer

WordXP Delphi Command Failed Saving as PDF

I have got an application which worked fine when saving just as a .doc file. I have since tried to get it so the program will save as both .doc and .pdf, this is done using the WordXP unit. procedure TDocCreator.CloseDocument(ASaveAs : string); var …
Edward
  • 25
  • 5
0
votes
1 answer

Download file with Perl on form submit

I am trying to initiate a Save As dialog on a form submit. My form is pretty simple, I'm using Dropzonejs for a drag and drop file, and it looks this:
So when the user…
Iluvatar14
  • 699
  • 1
  • 5
  • 18