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

Macro VBA, can't get "SaveAs" to function

I have a process that I run on sets of workbooks. I'm trying to modify the filetype when I close the file. I'm trying to tack it onto the end of the process before closing each workbook. Right now, the opened file is in .xlsb. I'm trying to save it…
tdave22
  • 23
  • 3
2
votes
1 answer

"Save As" box in a pdf file

Please help. Is it possible to create in pdf file a button which brings up the "Save As" box for saving a linked file? I have used Forms feature in Adobe Acrobat 2017 but without any results. Thanks in advance.
Igor
  • 23
  • 4
2
votes
0 answers

PHP cURL file download from remote with remote file name

I want to download files from remote server and save those files in my server exactly as this answer here https://stackoverflow.com/a/48141751/9625566 I am using his code but the problem is it's not saving the file with original remote-server…
2
votes
1 answer

How to save multiple histogram plots into multiple pdf files

I'm having trouble saving histogram plots from a "for loop" into multiple pdf files. I have tried the .savefig() and the img2pdf. for i,title in enumerate(titles): count, bins, ignored = plt.hist(dists[i], 50, normed=True, range= …
JEREMIAH
  • 21
  • 1
2
votes
2 answers

Allow user to choose the save file path for "print PDF"

I have a commandbutton on the Excel file that allows the user to automate the "Print PDF" feature with a click. The issue being, at the moment I can only save the file to the specified location within the code. I want to let the user choose their…
GoldFusion
  • 149
  • 1
  • 14
2
votes
3 answers

VBA to click IE11 Save As dialogue in Win7x64

I'm trying to get VBA to automate saving a file from IE. Thanks to various posts on these forums, I can login, navigate pages, and click the download link. The Save prompt appears at the bottom of IE, then I'm stuck: I've been trying to use the…
Scott
  • 161
  • 5
  • 13
2
votes
1 answer

Save copy of workbook as new xlsm, runtime error 1004

I'm trying to save a copy of the workbook as a new .xlsm file via the following code: SaveAs FileName:=StrPadHoofdDocument & "\Docs\" & "\n\" & ".xlsm", FileFormat:=xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False I get the following error:…
MyName
  • 180
  • 1
  • 2
  • 19
2
votes
1 answer

FileSaver.js Save as type is incorrect

I'm working on a project that uses Electron to wrap a web app to desktop app. In this project, I use FileSaver.js to export canvas content to png/jpg/pdf. canvas is turned into base64 image base64 image is turned into blob blob file is saved using…
0xh8h
  • 3,271
  • 4
  • 34
  • 55
2
votes
0 answers

"Right Click" in Selenium IDE to bring up the Context Menu

How can you bring up the context menu (as if you were right clicking on an element on a page) so you can see the context menu in the browser? I see the contextMenu and contextMenuAt commands are available, but they always seem to pass the "T" flag…
GIZNAJ
  • 501
  • 5
  • 23
2
votes
1 answer

Excel VBA .Saveas() function to preseve formating

I'm trying to use the below saveas() function to output an excel worksheet to a xltext file. the file is generated fine but numbers with a special formatting of #,###.00. are output as "1,000.00" rather than just 1,000.00. How can I remove these…
2
votes
1 answer

Haxe, Stencyl, Windows 'Save As' Dialogue

I have been using a visual programming language called Stencyl to create a program for users to edit images (basically), but something I've been having difficulty with is for the user to export their image (or a text-file of the image data) once…
0x.dummyVar
  • 184
  • 8
2
votes
0 answers

Save as In PowerPoint VBA

Hello I have been looking into this and have found some things but either I am an idiot or everything I have found has left out a few details. I am making an add-in that completely changes what is in the presentation and as such I want to make sure…
JustinAB
  • 33
  • 7
2
votes
1 answer

VBA Saving (and converting) a Document From .docm to .docx

I have the following code at the end of a project: 'Save the Document Dim Directory As String, FileName As String Directory = "C:\Users\" & (Environ$("Username")) & _ "\Desktop\STL\" If Len(Dir(Directory, vbDirectory)) = 0 Then MkDir…
anon
2
votes
1 answer

MS Word 2013 Form, create a Save as and Submit Button with macro

I have a simple form (from a template) in Word 2013 and have a 'Submit' button that will: 1. Gather information from fields in the document, name the document, and saveAs. 2. Email the form to pre-set email addresses. Multiple people will open a…
ThunderJ
  • 21
  • 1
  • 3
2
votes
1 answer

Retrieving MS Word Document from Database and Saving Locally

I have used AsyncFileUpload AJAX control to upload a file to a column in a SQL Server database using LINQ to SQL. How do I retrieve the document from the database and allow the user to save to local drive using a Save As Dialog box using LINQ to…
Lakeshore
  • 323
  • 1
  • 7
  • 18