Progammatically Applying a Background Theme

P

PastorHankWi

I am working with Visual Foxpro and Powerpoint 2000. I have been able to
create via code a presentation that displays everything I need it to show.
However, I would like to apply the theme 'mountains' to the presentation and
cannot figure out how to identify it. I have been able to change fonts,
colors etc, but I'd really like to use this theme.
Does anyone have any ideas on how to send via code (either VFP or VBA) the
correct settings to powerpoint?

TIA
Hank
 
S

Shyam Pillai

Hank,
You might want to use the macro recorder to get hold of start bits of code.

ActivePresentation.ApplyTemplate FileName:="g:\Presentation
Designs\Stream.pot"
 
P

PastorHankWi

That worked....Thank you very much....

Hank


Shyam Pillai said:
Hank,
You might want to use the macro recorder to get hold of start bits of code.

ActivePresentation.ApplyTemplate FileName:="g:\Presentation
Designs\Stream.pot"


--
Regards,
Shyam Pillai

Toolbox: http://skp.mvps.org/toolbox
 
Top