Dear Steve
Many Thanks. Build on your recommendations I was able
to build a toolbar as given before.
One last thing. When I Start with ...
---------------
Presentations.Add WithWindow:=msoFalse
ActivePresentation.Slides.Add(Index:=1, Layout:=ppLayoutBlank).SlideID
---------------
... a new slide is added to the open, allready existing presentation and
when I close the "ActivePresentation", the Active Windows closes (not
the invisible presentation).
I think, I do someting wrong when opening a slide in the invisible
presentation
and closing this presentation again in the end. Can you help? Thanks a lot.
Best Regards, George
>> Has somebody an idea, how I can create such a tool-
>> bar with "RGB-colored" buttons?
[quoted text clipped - 13 lines]
> PPTools: www.pptools.com
> ================================================
Chirag - 01 Apr 2008 14:10 GMT
Look at the following link:
http://officeone.mvps.org/vba/setbuttoncolor.html
- Chirag
PowerShow - View multiple PowerPoint slide shows simultaneously
http://officeone.mvps.org/powershow/powershow.html
> Dear Steve
>
[quoted text clipped - 36 lines]
>> PPTools: www.pptools.com
>> ================================================
Steve Rindsberg - 01 Apr 2008 20:34 GMT
> Look at the following link:
> http://officeone.mvps.org/vba/setbuttoncolor.html
Nice one, Chirag
-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================
Steve Rindsberg - 01 Apr 2008 20:34 GMT
> Dear Steve
>
[quoted text clipped - 15 lines]
> presentation
> and closing this presentation again in the end. Can you help? Thanks a lot.
I'd do it this way instead:
Dim oPres as Presentation
Set oPres = Presentations.Add WithWindow:=msoFalse
oPres.Slides.Add (etc ... just as you're doing now)
then when you're done:
oPres.Close
> Best Regards, George
>
[quoted text clipped - 15 lines]
> > PPTools: www.pptools.com
> > ================================================
-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================