Built-in Dialog Boxes

  • Thread starter Thread starter Lynn Taylor
  • Start date Start date
L

Lynn Taylor

Is there anyway you can display dialog boxes using VBA. For example,
would like to display the Save As dialog box, if a presentation has no
already been saved, just before the presentation gets added to ou
document management system.
Thanks
Lyn
 
CommandBars("File").Controls("Save As...").Execute

Brian Reilly, PowerPoint MVP
 
Thanks for this post.
However, once the save as dialog box appears and I save th
presentation, the rest of the code after that which adds it to our do
management system does not run. Is there something else I have to add
 
However, once the save as dialog box appears and I save the
presentation, the rest of the code after that which adds it to our doc
management system does not run. Is there something else I have to add?

That line of code invokes the save-as dialog box, as though the user'd done it
using the mouse. But just as when the user clicks buttons, you don't have any
control over what happens next.

You'll need to describe what you DO want to happen in more detail, I think.
 
Back
Top