Macros in PPT2003

  • Thread starter Thread starter homokyz
  • Start date Start date
H

homokyz

Could anyone help in case of how to insert picture in Slide Show view
to presentation or browse in a specific folder to add picture, but
still in slideshow view.
 
Try adding a command button from the control toolbox toolbar and give it this
code

Application.CommandBars("Menu Bar") _
..FindControl(Id:=2619, Recursive:=True).Execute
Application.WindowState = 2

Does that work (it won't in 2007 BTW)
 
Try adding a command button from the control toolbox toolbar and give it this
code

Application.CommandBars("Menu Bar") _
.FindControl(Id:=2619, Recursive:=True).Execute
Application.WindowState = 2

Does that work (it won't in 2007 BTW)
--
Amazing PPT Hints, Tips and Tutorials-http://www.PPTAlchemy.co.ukhttp://www.technologytrish.co.uk
email john AT technologytrish.co.uk





- Show quoted text -

Thank you so much, really apprechiate, this is exatly what I need!!!!
Just a short question, do you have any idea to specify the image
position on the slide?

Thank you for your usefull help again, best regards, ZOLTAN
 
Back
Top