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

VBA outlook - save as email

I was trying to save my current email to a folder. I modified my code a bit. However, there is an error. *438 : object doesn't support this property or method.* on this code: GetCurrentItem().SaveAsFile StrFile, olMSG My VBA code: Public fso As…
pexpex223
  • 371
  • 4
  • 10
  • 25
0
votes
2 answers

Saving Excel PDF in the same file path for different users VBA (MAC)

I am having difficulty saving Each PDF in a specific folder for various users on our network. I want the code to save a PDF version of the worksheet in this location: Macintosh HD ▸ Users ▸ (Specific Username Saving the PDF) ▸ Dropbox ▸ Froghair ▸…
stark
  • 13
  • 1
  • 2
0
votes
1 answer

BIDS 2008 R2 execute package I previously created prompts me to save as

I have a project I created with BIDS 2008 R2 bout a month ago. Today I made some changes to one of the packages inside the project and upon executing the package BIDS prompts me to save as. Same results clicking the 'Save all' or 'Save Selected…
SELECTY
  • 1
  • 2
0
votes
0 answers

MS Word APIs: Saving .doc word document as .docx in batch mode

I am trying to open a doc file and save it as docx in batch mode. But MSWord is always shows up even when the visible attribute is set to false.. is there something wrong with my code ? If Wscript.Arguments.Count <> 2 Then Wscript.Echo "Wrong…
0
votes
1 answer

Excel Developer Tab, Export XML, programmatic control of "Save As" options?

Question: How can one control Excel's XML export process? Are options, excluding save to file, available? Big Picture, moving data from Excel XML table to ERP application. Current solution: Setup: Developer Tab is activated in end user's…
Tim C
  • 13
  • 3
0
votes
1 answer

PHP: Reducing the size of 'save as' window

I'm using the following PHP code, which opens a 'Save as' file dialog: $filename = "employeedetails.csv"; header('Content-type: application/csv'); header('Content-Disposition: attachment; filename=' . $filename); When I…
Ruchir Sharma
  • 819
  • 1
  • 10
  • 18
0
votes
1 answer

Bootstrap Modal - Save as PDF

I have a bootstrap modal on my website and I would like to extract the Modal body to save it as a PDF. It basically contains a table that is dynamically calculated using javascript and I would like to save this information in a PDF file so that…
Neophile
  • 5,660
  • 14
  • 61
  • 107
0
votes
1 answer

Filename of individual split files in PowerPoint

there I have a problem in MS PowerPoint. I am currently working with about a dozen files with at least 100 slides in each. I need to create individual slides as individual files for uploading purpose. I got a code to split the file into individual…
Prem
  • 11
  • 1
0
votes
1 answer

VBA from Ribbon in PowerPoint only works once after using SaveAs / SaveCopyAs

I am experiencing an odd behavior of my PowerPoint Ribbon. I created a pptm file with a Ribbon for a quick-link to 2 vba codes. One is copying data from an xls-file to a chart. The other one is saving a copy of the presentation as a pptx file and a…
0
votes
1 answer

Powerbuild 12.1 datawindow Saveas with limited file types option

I am using PB 12.1 Classic on Window 7. When we use datawindow's saveas(), it either displays all files type or one specific file type based on saveastype argument. We need to display only certain filetypes e.g. CSV, Text, Excel, HTML and PSReport.…
SK_78
  • 1
0
votes
1 answer

Save as Image on the iPhone

I have a website which is visited mainly from iPhone. On my pages the users have the chance to get discount coupons. I need to implement a feature which the user can use to save the coupon image on his device. I have created a controller which…
Lorenzo
  • 29,081
  • 49
  • 125
  • 222
0
votes
2 answers

Saveas Filename with future date

I am trying to save my workbook with a date that is 28 days from today. Here's my code: With ActiveWorkbook strDate = CDate(Format(Now(), "dd-mm-yyyy")) strNewDate = DateAdd("D", 28, strDate) strFileName = Format("SCNI_Exceptions_") &…
0
votes
1 answer

I am getting Error 424 while trying to save a file using Excel vba

Here is the statement - pasteBook.SaveAs fn:=folderName & "\Excels\" & fn & " " & Format(DateTime.Now(), "MM-dd-yyy"), FileFormat:=51 Note - pasteBook is defined to be as the current ThisWorkbook. I keep getting the following message box Run-time…
0
votes
1 answer

copy lots of sheets and delete a few sheets

I was wondering if someone could help me with the code. I am almost there but not fully. Sub col_export_Klikken() Dim wb As Workbook countsheets= ThisWorkbook.Sheets.Count Set wb = Workbooks.Add For nsheets = 1 To countsheets …
Tarik
  • 77
  • 1
  • 1
  • 11
0
votes
1 answer

Save Excel Sheet as HTML with Current Date

I am looking to set up a macro to save 6 different worksheets as individual HTML files daily with the current date. I can find the code for saving as current date, and code for saving as HTML, I cannot figure out how to make them work together. My…
Rich
  • 1