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

Powerbuilder saveas xlsx, after 170000 rows it's not working, returns -1 or crashes

I have an issue when using DataWindow SaveAs function. Previously the function was working with Excel8 format and the rowcount didn't exceeded 65536. But now there could be 300000 or more rows in the DW that needs to be exported. I've changed the…
Zoltan V.
  • 21
  • 1
  • 2
2
votes
1 answer

Outlook VBA: Adding browse button to input box to get folder path

I was looking for any options on a browse for folder within Outlook VBA. Currently I have, from a previous search: Dim save_to_folder As String save_to_folder = InputBox("Search returned " & objRsts.Count & " messages._ Please input folder…
user2414983
  • 21
  • 1
  • 2
2
votes
2 answers

Change the content type of a pop up window

This question brought a new one: I have a html page and I need it to change the content type when the user press "save" button so the browser prompt to save the file to disk I've been doing this in the server side to offer "excel" versions of the…
OscarRyz
  • 196,001
  • 113
  • 385
  • 569
2
votes
1 answer

Using Perl to SaveAsXMLData on Excel 2010 Worksheet

I've an Excel 2010 spreadsheet with an XML map defined within it. Using Perl I want to save the worksheet as XML Data. I do not need to export the XML map file. From within Excel I can select "File > Save As > Save as type : XML Data". This is…
Chris
  • 538
  • 8
  • 19
2
votes
1 answer

PHP: Save as dialog with custom content

I have the following code: header('Content-type: text/plain'); header("Content-Disposition: attachment; filename=bookmark.adr"); readfile('bookmark.adr'); This makes a save-as popup where an user can save the bookmark.adr file. But I would like to…
Jordy
  • 4,719
  • 11
  • 47
  • 81
2
votes
1 answer

MATLAB's 'saveas' saves my figure as squares. But I want them to be more rectangular

I am using MATLABs 'saveas' to save off one of my figures as a .png or .jpg or whatever. So I just do: y = randn(1,00); plot(y); grid on; saveas(gcf,'y','png'); Now the problem is that the png or final picture comes out as a perfect square - even…
Spacey
  • 2,941
  • 10
  • 47
  • 63
2
votes
2 answers

Saving as .xlsx in different directory in vba

I am trying to use the SaveAs method to save a .csv document as a .xls document. However, when I try and designate the folder, it fails. For example, it will save to some default directory (my documents, which is not where I am ready from)…
mike
  • 22,931
  • 31
  • 77
  • 100
1
vote
1 answer

How do I solve docx format saving error in a python code?

I wrote code to highlight some keywords from a txt file and save the output in a docx file. The output is coming perfectly, however, when I tried to save the file, it showed some errors. The code is as below: import re from termcolor import…
rabby26
  • 13
  • 3
1
vote
2 answers

save as PDF: recommend a server solution to receive raw data from client and send back PDF to client?

My project requires me to add a "SaveAs PDF" feature. I was looking for a pure JavaScript solution which does this just in client end, however, was told that it's not implementable, at least for now. jsPDF currently is still a limited version, not…
Simon
  • 1,463
  • 6
  • 34
  • 46
1
vote
0 answers

w32 save as function for csv files in shopping list. | GO

I am a GO beginner and need sone help. I am trying to implement a save as w32 function in my shopping list project that i am doing in my school. Is this even possible? When i choose the function in the console it just skips it and goes back to the…
kiko46
  • 11
  • 1
1
vote
1 answer

How to save textbox text to notepad and save again a textbox text to add it into the same note pad?

I want to save my textbox1.text in a notepad of my computer. And after saving that, I will save the next textbox1.text again. But I want it to be added to the same notepad. Anyone can help me on the code? Using VB net. I have a one form with…
Newbie TJ
  • 35
  • 5
1
vote
2 answers

Excel won't let macro save spreadsheet with macros

I've written a spreadsheet for a small company, that has several useful functions including performing the shift rotation for their full- and part-time employees, generates a list of possibly understaffed shifts and then prompts the user to save the…
Masked Coder
  • 280
  • 2
  • 15
1
vote
0 answers

How to save a .py file avoiding save_as command

is there any chance to save a .py file without the "save as" pop up si showed up? In the simple GUI I've created, the first file saving is by the button Save As with the filename taken form the text in the first input field. Once the file is saved…
1
vote
1 answer

Save the current webpage in a single html file format

I am working on a project where at some point I want to add the functionality of saving the current webpage as HTML, also in pdf, I am saving page in pdf format by this javascript function window.print() now I want to save it as HTML, but can't find…
1
vote
2 answers

Save As .ipynb in VSCode

I currently manage a group of graduate student researchers for whom this is happening across multiple platforms (PC Windows 10 and 11, Mac). Our workflow is to work off of .ipynb templates, renaming them specific to different oceanography and…
brosenheim
  • 172
  • 1
  • 14