"Print" Button

  • Thread starter Thread starter Galsaba
  • Start date Start date
G

Galsaba

I want to add a "print" button to my presentation that will print the entire
presentation.
How to do it?

Joe
 
I thought about a Command Button, that on click it will execute a vba script.
This VBA script will be a command to click.

I know, for example, in Access, the command will be:
doCmd.printOut

Joe
 
Why make it complicated? Create a button, select it, go to Slide Show >
Action Settings > Run Program and type"

launch.exe print yourfile.ppt

How are you planning to distribute your presentation? Will users all have
PowerPoint installed on their system?
 
ActivePresentation.PrintOut
Where could I find this inforamtion?
Where can I find more about VB for PowerPoint?

I added the "Print Button" to my presentation. Works great!
 
ActivePresentation.PrintOut
Where could I find this inforamtion?
Where can I find more about VB for PowerPoint?

Visit www.pptfaq.com
Near the top of the page, you'll find a link to Programming PowerPoint. Follow
that.

And while PowerPoint's help could use a lot of ... well ... help, it's not such
a bad place to start. Press Alt+F11 to go to the VBA IDE (editor) then fire up
the help from there.
 
Back
Top