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
6
votes
1 answer

Is there "Save as" option in Android Studio file menu?

I have recently move from Eclipse to Android Studio. I could not find "File > Save as" options. Is there any alternative for this? (Sometimes, I create new class or XML by creating new one from already existed content, and than do changes. In…
ivan.panasiuk
  • 1,239
  • 16
  • 20
5
votes
3 answers

Cross-browser Save As .txt

Is there a JavaScript library that allows to save strings as txt files, and works cross-browser? In the past, I have been using Downloadify, but I am looking at another option for a couple reasons: I hope to find a pure JavaScript solution, without…
Christophe
  • 27,383
  • 28
  • 97
  • 140
5
votes
6 answers

View js files in firefox

Everytime I try to navigate to a JS file on Firefox I get a save-as dialog. I would like to just be able to view the source in the actual browser and not have to download and open the file in another editor. Is there any way I can force Firefox to…
qwertymk
  • 34,200
  • 28
  • 121
  • 184
5
votes
5 answers

How can I save a Visual Studio project with different name (like save as)?

In Visual Studio, I usually call my start project as project V 1_0. Going forward with the project, adding parts, i have the necessity to maintain the previous versions and save the newest with different file name, as project v 1_5 or project v 2_0…
Massimo D. N.
  • 316
  • 1
  • 6
  • 17
5
votes
1 answer

save pptx as pdf through excel

I am trying to convert all pptx files in a give path to pdf files. my code: Sub pptxtopdf() Dim ppt As Object Dim objFSO As Object Dim objFolder As Object Dim objFile As Object Dim i As Integer On Error Resume Next …
Boosted_d16
  • 13,340
  • 35
  • 98
  • 158
5
votes
2 answers

How can I output a report in PDF format, where the name consists of values from fields?

I want to add functionality to my Access 2007 report whereby a PDF copy of the report is created at the click of a button. I know that there is an OutputTo macro which can do this for me, but it does not allow me to include report field values as…
Zaid
  • 36,680
  • 16
  • 86
  • 155
4
votes
1 answer

vba 'Compiler error expected: =' on saveAs operation

The following line in my VBA code is generating the compile error 'Compiler error expected: =' implying that it expected an assignment. What am I doing wrong and how do I fix this? I just want to save the file. Also, I want to overwrite the file…
Brian
  • 1,128
  • 7
  • 18
  • 27
4
votes
1 answer

Application of wget to "Save As Complete Web Page"

Is there a way to wget-ing a web page and obtaining the same exact result (that is a .htm file) as with the browser command "Save As Complete Web Page" (Chrome or Firefox)? I was not able to find any configuration of wget that does it correctly. I'm…
m121212
  • 141
  • 1
  • 1
  • 10
4
votes
1 answer

"Save As Video" but how to do it with javascript and html instead?

When you have a direct link to a video you can usually right click and the mouse menu will appear. Once there you'll see Save Video As. If you click on that it will download the video to your computer. I want the same functionality but instead I…
BreezeWind
  • 618
  • 1
  • 9
  • 18
4
votes
1 answer

python-pptx save each slide of an existing ppt as picture

I am using power point as the user interface of my web page to make a simple pictures. What I do today is create slides in ppt and then save each slide as a picture, then my web would download the picture and show it. I would like to automate this…
4
votes
0 answers

Save As dialog in Angular

Is it possible to display a Save as dialog in angular or through vanilla js? similar to this? Where a user can specify where to save a file to? Thanks.
Diza
  • 131
  • 2
  • 8
4
votes
2 answers

Using VB to automate IE "save target as"

I'm trying to use an excel VB macro to download excel files from a membership password-protected site. I am using the "InternetExplorer" object to open a browser window, log-in and browse to the correct page, then scanning for the links I want in…
Tim Gilbert
4
votes
6 answers

Open excel 2007 excel files and save as 97-2003 formats in VBA

I have a weird situation where I have a set of excel files, all having the extension .xls., in a directory where I can open all of them just fine in Excel 2007. The odd thing is that I cannot open them in Excel 2003, on the same machine, without…
ABB
  • 557
  • 2
  • 8
  • 12
4
votes
1 answer

How can I convert an SVG node to PNG and download it to the user?

I've got an application that builds a bar chart using svg, and I want to download a PNG image to the user. I'm using the FileSaver.js and canvas-to-blob.min.js polyfills to get support for canvas.toBlob() and window.saveAs(). Here's the snippet of…
scottb
  • 1,135
  • 11
  • 17
4
votes
2 answers

Cancel selecting a file within JFileChooser without closing the dialogue

I am trying to implement a "Save As" dialogue using a JFileChooser. The dialogue is supposed to give the user the ability to type a filename and click save, at which point the new File object will be returned and created. This works, but I am…
ApproachingDarknessFish
  • 14,133
  • 7
  • 40
  • 79
1 2
3
34 35