Saveas dialog

S

Shinya

Why saving new document doesn't launch the save as dialog?
Application.ActivePresentation.Save

And

I managed to launch the saveas dialog but how can i get the file name
that was just saved.

With oHostApp.FileDialog(ppFileDialogSave)

' Set file filter flags
Call .Extensions.Add("*.PPT", "PowerPoint Presentation")
Call .Extensions.Add("*.PPS", "PowerPoint Show")

.ActionButtonName = "Save"
.DefaultDirectoryRegKey = "Default"
.DialogTitle = "Save as"
.DirectoriesOnly = False
'.InitialView = ppFileDialogViewPreview
.IsMultiSelect = False
.IsPrintEnabled = False
'.IsReadOnlyEnabled = True
.OnAction = "ProcessSelection"
.UseODMADlgs = False

.Launch
End With

Shin
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top