Results 1 to 2 of 2

Thread: Save dialog in ppt

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Save dialog in ppt

    Im running a macro from excel which opens a powerpoint, inserts a bunch of graphs and texts and then to end the macro I want to open up a "Save As" window.
    [vba]
    Set PPT = CreateObject("Powerpoint.Application")
    With PPT.FileDialog(msoFileDialogSaveAs)
    .InitialFileName = *(file location private)*
    .AllowMultiSelect = False
    .Show
    End With[/vba]
    this is the code I am using and it appears to work but when I hit the save button... it doesnt seem to save at all for some reason.
    does anyone have any idea as to why it doesnt save?
    Last edited by Aussiebear; 03-05-2013 at 07:42 PM. Reason: Corrected the tags surrounding the code

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •