Browsing PP slides on access form

  • Thread starter Thread starter Silvester
  • Start date Start date
Not having gone through all of the code, it looks like it work just fine.
The following link shows a little more of how to instantiate PowerPoint.
Notice the line of code a few lines in that is used to determine if
PowerPoint is going to be visible (ppApp.Visible = True):

http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:
80/support/kb/articles/Q222/9/29.asp&NoWebContent=1

Here is another quick and dirty way to "Hide PowerPoint while I automate
it":

http://www.rdpslides.com/pptfaq/FAQ00307.htm
 
Thanks very much. Is there any way to get PP to start silently & prevent the
Powerpoint splash screen from starting up when we run the code

' Start Powerpoint and open an existing presentation.
holder = Shell("c:\Program Files\Microsoft Office\Office\Powerpnt.exe")
 
I don't know off-hand if that is possible. Maybe someone else will pop in
with a definite. SORRY!
 
Thanks very much. Is there any way to get PP to start silently & prevent the
Powerpoint splash screen from starting up when we run the code

' Start Powerpoint and open an existing presentation.
holder = Shell("c:\Program Files\Microsoft Office\Office\Powerpnt.exe")

You could try
holder = Shell("c:\Program Files\Microsoft Office\Office\Powerpnt.exe", _
vbMinimizedNoFocus)

But I suspect you'll have better results if you use automation; search goole
for "automation powerpoint"

That should turn up examples.
 
Back
Top