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

Stop changing the source file name with destination file name

I found this very cool VBA, it does what it says, but as I observed it keeps changing the source file name with destination file name Can anyone please provide an alternate line of code to stop altering source file What actually this macro does is,…
Directionsky
  • 106
  • 9
-1
votes
1 answer

screenshot windowsform

I draw a figures on a windows form, not on picturebox. And I would like to save view of my windows form to special folder on desktop. I dont know if better will be make a screenshot or i should try to save it as an image (bitmap) in my…
Kim
  • 25
  • 3
-1
votes
1 answer

PowerPoint freezes and code continiues

I have VBA code that creates charts and saves them in a PowerPoint presentation as a PDF. Sometimes the PowerPoint application freezes, and the code continues with creating the next file. At the end, the code closes the Application, so some files…
Nineosix
  • 1
  • 1
-1
votes
1 answer

How to handle and prompt file name during file save (Word 2016, VBA)

I establish filename base on file content (first paragraph). When user click on ribbon file>Save As I want to prompt proper file name (even there is other name). How to handle and put in file name in window on attached screen? My SaveAs backstage…
deku
  • 85
  • 10
-1
votes
2 answers

Save as pdf destination issues

I am working on a save to pdf export from a loop function. I have set the file_name as: Sub AutoFill_export2pdf() ' Dim rowCount As Integer Dim CurBU As String Dim CurOPRID As String Dim CurName As String Dim CurJournalID As String Dim…
TylerH
  • 21
  • 1
  • 6
-1
votes
1 answer

VBA - Browsing, selecting file and saving file as

I am creating an access database with forms and reports. in one of my forms I want to be able to go to a folder selecting a file (.pdf, .doc, .xls) and then saving it in a dedicated "attachments" folder. I know about OLE objects and the attachment…
jfc85csc
  • 1
  • 1
  • 1
-1
votes
1 answer

Invoke File save as prompt while Downloading in ExtJS

I want to invoke the file save as prompt while allowing the user to download a file in ExtJS from a URL. Basically the idea is to allow the user to change the file name and select his desired location before saving the file on their machine. Is…
-1
votes
1 answer

unexpected system exception while trying not to rewrite a file and saving it in new location in C#

I use a savefiledialog in the application to save the file. If the same filename already exists I get a popup asking if i want to replace or not. If i give no I get unexpected system exception. Below is part of code string fname1 =…
user1665707
  • 615
  • 3
  • 11
  • 24
-2
votes
1 answer

Download form data to local machine from memory

Is it possible to create a download form data to local machine without writing it to a file one the server? I want to click export button on form and have "save as" file dialog popup, that would let me save the form data to my local machine with a…
Nigel
  • 135
  • 7
-2
votes
1 answer

Using VBA macro to SaveAs but keep original file open

I am using a macro that runs automatically when opening my file, which includes a "SaveAs" function. However, I would like the original file to stay open after saving in case I need to double check the data or want to make a change. I have read that…
-2
votes
1 answer

Save as, winforms (c#)

I wrote this code for a "save" button { File.WriteAllText(ofd.FileName, textBox1.Text); } And I want to do a "save as" button, to create a file by my app but idk how to do it, someone know how to ? Or just give me a doc,…
kichi
  • 11
  • 1
-2
votes
1 answer

Convert space separated value text to .csv with c++ then save it

How to convert .asc file (space separated value) into .csv file with c++ then save it as .csv file on pc or android. Note: this .asc file is for srtm data, so it is large, is 3600 rows and 3600 columns. Please without software like excel or such. I…
user9322960
  • 135
  • 8
-2
votes
2 answers

How to use JavaScript in PHP save as function?

I am new in PHP. I have a form which have different submit button Like Save, Edit, Cancel and Save as. Now i want when user click on Save as button java script is run and Check the file name. If there is a already exists file with same name in db…
sunny
  • 1,511
  • 5
  • 20
  • 57
-2
votes
2 answers

How to Create a Save as button for an image

I'm developing a Screenshot extension for Chrome, and would like to know how could I implement a 'Save as' button in Html/Javascript. Currently users only Right Click To 'Save as'. I'm new to Javascript & didn't exactly find a way how to do it…
fcs132
  • 39
  • 1
  • 3
-2
votes
1 answer

Using VBA to save a file in excel 2010 with a different name each time

I have a spreadsheet that I'm using as a template to get user input. When you press the submit button on the spreadsheet, it sends the data to a different workbook that stores all the previous entries and then clears the template. Is there a way to…
Bolo
  • 13
  • 1
  • 1
  • 2
1 2 3
34
35