Printing the msgbox VB

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can msgbox solutions creating using VB be printed automatically? I have
created a quiz in Powerpoint, the msgbox allows the user to retry the quiz or
quit. Before they click the quit option is there a way of printing the
msgbox detail?

Regards.
 
Sure, but ...

1 You will need to capture the provided answer, store it, then print it out
in seporate VBA routine(s). In short, you will need to build this
functionality into your macro.

Bill Dilworth
 
One way to do this is to write the information you want to print to a slide
and then print the slide. You can even do this behind the scenes deleting
the slide when you are done. An example of creating a slide and printing it
can be found in Example 7.9 on my site (http://www.PowerfulPowerPoint.com).
Instead of creating the Print button, you could build put the code for
printing right into the PrintableSlide procedure. and follow it with the
code for deleting the slide.
--David

--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/
 
Back
Top