Group:  Microsoft Access ยป microsoft.public.access.modulescoding
Thread: Setting background transparent in VB and save as GIF (PPT 2007)

Setting background transparent in VB and save as GIF (PPT 2007)
"Vincent Verheul" <v_ygf%[ at ]cc6.com> 11/10/2008 10:06:47 AM
Hello,

In PowerPoint 2003 I successfully use Visual Basic code to save a Powerpoint
Slide into GIF format with a transparent background. This does not seem to
work anymore in PowerPoint 2007. I have selected the option "Save as
PowerPoint 97-2003".

This is the code:

Sub TestTransparency(PPT As PowerPoint.Application, Pres As
PowerPoint.Presentation)
Const FileName = "TestTransparency.ppt"
' skipped some code to set the PPT and Pres objects
PPT.Visible = True
With Pres.Slides(1)
.FollowMasterBackground = False
.Background.Fill.BackColor.RGB = RGB(255, 255, 255)
.Background.Fill.Transparency = 1
End With
Call Pres.SaveAs(FileName, ppSaveAsGIF)
' PowerPoint saves the GIF in a separate folder with the name of the
selected slide
End Sub

In fact I am running this out of an MsAccess application using the
PowerPoint library, but that should not make a difference.

Also when doing this manually via the PowerPoint user interface the saved
GIF file has no transparent background: In a slide use the right mouse
button and select Format Background ... then select Solid Fill, Hide
Background Graphics, (optionally select a color, I use white: RGB
255,255,255) and set Transparency to 100%. Then Save As... Other Formats...
GIF.




Re: Setting background transparent in VB and save as GIF (PPT 2007)
"Douglas J. Steele" <NOSPAM_djsteele[ at ]NOSPAM_gmail.com> 11/10/2008 1:10:02 PM
While you may be running the code from Access, it sounds as though it's
actually a PowerPoint issue.

I think you'll have a better chance of getting an answer if you repost your
question to a newsgroup related to PowerPoint. It may be worth mentioning in
the repost that you are using Automation, in case that's relevant.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"Vincent Verheul" <v_ygf%[ at ]cc6.com> wrote in message
news:491807b7$0$27211$ba620dc5[ at ]text.nova.planet.nl...
[Quoted Text]
> Hello,
>
> In PowerPoint 2003 I successfully use Visual Basic code to save a
> Powerpoint Slide into GIF format with a transparent background. This does
> not seem to work anymore in PowerPoint 2007. I have selected the option
> "Save as PowerPoint 97-2003".
>
> This is the code:
>
> Sub TestTransparency(PPT As PowerPoint.Application, Pres As
> PowerPoint.Presentation)
> Const FileName = "TestTransparency.ppt"
> ' skipped some code to set the PPT and Pres objects
> PPT.Visible = True
> With Pres.Slides(1)
> .FollowMasterBackground = False
> .Background.Fill.BackColor.RGB = RGB(255, 255, 255)
> .Background.Fill.Transparency = 1
> End With
> Call Pres.SaveAs(FileName, ppSaveAsGIF)
> ' PowerPoint saves the GIF in a separate folder with the name of the
> selected slide
> End Sub
>
> In fact I am running this out of an MsAccess application using the
> PowerPoint library, but that should not make a difference.
>
> Also when doing this manually via the PowerPoint user interface the saved
> GIF file has no transparent background: In a slide use the right mouse
> button and select Format Background ... then select Solid Fill, Hide
> Background Graphics, (optionally select a color, I use white: RGB
> 255,255,255) and set Transparency to 100%. Then Save As... Other
> Formats... GIF.
>
>
>
>


Re: Setting background transparent in VB and save as GIF (PPT 2007)
Steve Rindsberg <abuse[ at ]localhost.com> 11/10/2008 4:35:23 PM
As you point out, this is a PPT issue, not an Access/automation one.
I can repro it here and have passed the bug on to someone at MS.
Here's the version of your code I tested with (so as to involve only PPT):

Sub TestTransparency2()
Dim filename As String
' changed the save-as name to .GIF extension
' as PPT2007 is now fussier about these things
' why save a GIF as a PPT?
filename = "c:\temp\TestTransparency.gif"
' skipped some code to set the PPT and Pres objects
'PPT.Visible = True

With ActivePresentation.Slides(1)
.FollowMasterBackground = False
.Background.Fill.BackColor.RGB = RGB(255, 255, 255)
.Background.Fill.Transparency = 1

' you can Export directly to the format you want,
' btw, which lets you spec the resolution
' rather than using Save As.
' Doesn't solve the current problem, alas.
' Like so:
'.Export filename, "GIF", 800, 600

End With
Call ActivePresentation.SaveAs(filename, ppSaveAsGIF)

End Sub

In article <491807b7$0$27211$ba620dc5[ at ]text.nova.planet.nl>, Vincent Verheul
wrote:
[Quoted Text]
> Hello,
>
> In PowerPoint 2003 I successfully use Visual Basic code to save a Powerpoint
> Slide into GIF format with a transparent background. This does not seem to
> work anymore in PowerPoint 2007. I have selected the option "Save as
> PowerPoint 97-2003".
>
> This is the code:
>
> Sub TestTransparency(PPT As PowerPoint.Application, Pres As
> PowerPoint.Presentation)
> Const FileName = "TestTransparency.ppt"
> ' skipped some code to set the PPT and Pres objects
> PPT.Visible = True
> With Pres.Slides(1)
> .FollowMasterBackground = False
> .Background.Fill.BackColor.RGB = RGB(255, 255, 255)
> .Background.Fill.Transparency = 1
> End With
> Call Pres.SaveAs(FileName, ppSaveAsGIF)
> ' PowerPoint saves the GIF in a separate folder with the name of the
> selected slide
> End Sub
>
> In fact I am running this out of an MsAccess application using the
> PowerPoint library, but that should not make a difference.
>
> Also when doing this manually via the PowerPoint user interface the saved
> GIF file has no transparent background: In a slide use the right mouse
> button and select Format Background ... then select Solid Fill, Hide
> Background Graphics, (optionally select a color, I use white: RGB
> 255,255,255) and set Transparency to 100%. Then Save As... Other Formats...
> GIF.
>

-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================


Re: Setting background transparent in VB and save as GIF (PPT 2007)
"Vincent Verheul" <v_ygf%[ at ]cc6.com> 11/10/2008 5:47:25 PM
Hi Steve,

Thanks for your help and the 'Export' tip. Hopefully PowerPoint will get an
update at some point in the future. In the meantime I'm looking into the
TransparentBlt function in library "Msimg32.dll" as a workaround.

I save the PPT as GIF because the application creates HTML pages with them.
Also included are mapped coordinates which create 'hot spots' in HTML.

Thx. Vincent

"Steve Rindsberg" <abuse[ at ]localhost.com> wrote in message
news:VA.000045bd.18c78a69[ at ]localhost.com...
[Quoted Text]
> As you point out, this is a PPT issue, not an Access/automation one.
> I can repro it here and have passed the bug on to someone at MS.
> Here's the version of your code I tested with (so as to involve only PPT):
>
> Sub TestTransparency2()
> Dim filename As String
> ' changed the save-as name to .GIF extension
> ' as PPT2007 is now fussier about these things
> ' why save a GIF as a PPT?
> filename = "c:\temp\TestTransparency.gif"
> ' skipped some code to set the PPT and Pres objects
> 'PPT.Visible = True
>
> With ActivePresentation.Slides(1)
> .FollowMasterBackground = False
> .Background.Fill.BackColor.RGB = RGB(255, 255, 255)
> .Background.Fill.Transparency = 1
>
> ' you can Export directly to the format you want,
> ' btw, which lets you spec the resolution
> ' rather than using Save As.
> ' Doesn't solve the current problem, alas.
> ' Like so:
> '.Export filename, "GIF", 800, 600
>
> End With
> Call ActivePresentation.SaveAs(filename, ppSaveAsGIF)
>
> End Sub
>
> In article <491807b7$0$27211$ba620dc5[ at ]text.nova.planet.nl>, Vincent
> Verheul
> wrote:
>> Hello,
>>
>> In PowerPoint 2003 I successfully use Visual Basic code to save a
>> Powerpoint
>> Slide into GIF format with a transparent background. This does not seem
>> to
>> work anymore in PowerPoint 2007. I have selected the option "Save as
>> PowerPoint 97-2003".
>>
>> This is the code:
>>
>> Sub TestTransparency(PPT As PowerPoint.Application, Pres As
>> PowerPoint.Presentation)
>> Const FileName = "TestTransparency.ppt"
>> ' skipped some code to set the PPT and Pres objects
>> PPT.Visible = True
>> With Pres.Slides(1)
>> .FollowMasterBackground = False
>> .Background.Fill.BackColor.RGB = RGB(255, 255, 255)
>> .Background.Fill.Transparency = 1
>> End With
>> Call Pres.SaveAs(FileName, ppSaveAsGIF)
>> ' PowerPoint saves the GIF in a separate folder with the name of the
>> selected slide
>> End Sub
>>
>> In fact I am running this out of an MsAccess application using the
>> PowerPoint library, but that should not make a difference.
>>
>> Also when doing this manually via the PowerPoint user interface the saved
>> GIF file has no transparent background: In a slide use the right mouse
>> button and select Format Background ... then select Solid Fill, Hide
>> Background Graphics, (optionally select a color, I use white: RGB
>> 255,255,255) and set Transparency to 100%. Then Save As... Other
>> Formats...
>> GIF.
>>
>
> -----------------------------------------
> Steve Rindsberg, PPT MVP
> PPT FAQ: www.pptfaq.com
> PPTools: www.pptools.com
> ================================================
>
>


Re: Setting background transparent in VB and save as GIF (PPT 2007)
Steve Rindsberg <abuse[ at ]localhost.com> 11/10/2008 7:59:46 PM
In article <491873ad$0$27209$ba620dc5[ at ]text.nova.planet.nl>, Vincent Verheul
wrote:
[Quoted Text]
> Hi Steve,
>
> Thanks for your help and the 'Export' tip. Hopefully PowerPoint will get an
> update at some point in the future. In the meantime I'm looking into the
> TransparentBlt function in library "Msimg32.dll" as a workaround.

I'd be interested to hear what you come up with on that.

> I save the PPT as GIF because the application creates HTML pages with them.
> Also included are mapped coordinates which create 'hot spots' in HTML.

I wasn't questioning the choice of format, just the notion of saving it with a
PPT extension, per your:

Const FileName = "TestTransparency.ppt"



>
> Thx. Vincent
>
> "Steve Rindsberg" <abuse[ at ]localhost.com> wrote in message
> news:VA.000045bd.18c78a69[ at ]localhost.com...
> > As you point out, this is a PPT issue, not an Access/automation one.
> > I can repro it here and have passed the bug on to someone at MS.
> > Here's the version of your code I tested with (so as to involve only PPT):
> >
> > Sub TestTransparency2()
> > Dim filename As String
> > ' changed the save-as name to .GIF extension
> > ' as PPT2007 is now fussier about these things
> > ' why save a GIF as a PPT?
> > filename = "c:\temp\TestTransparency.gif"
> > ' skipped some code to set the PPT and Pres objects
> > 'PPT.Visible = True
> >
> > With ActivePresentation.Slides(1)
> > .FollowMasterBackground = False
> > .Background.Fill.BackColor.RGB = RGB(255, 255, 255)
> > .Background.Fill.Transparency = 1
> >
> > ' you can Export directly to the format you want,
> > ' btw, which lets you spec the resolution
> > ' rather than using Save As.
> > ' Doesn't solve the current problem, alas.
> > ' Like so:
> > '.Export filename, "GIF", 800, 600
> >
> > End With
> > Call ActivePresentation.SaveAs(filename, ppSaveAsGIF)
> >
> > End Sub
> >
> > In article <491807b7$0$27211$ba620dc5[ at ]text.nova.planet.nl>, Vincent
> > Verheul
> > wrote:
> >> Hello,
> >>
> >> In PowerPoint 2003 I successfully use Visual Basic code to save a
> >> Powerpoint
> >> Slide into GIF format with a transparent background. This does not seem
> >> to
> >> work anymore in PowerPoint 2007. I have selected the option "Save as
> >> PowerPoint 97-2003".
> >>
> >> This is the code:
> >>
> >> Sub TestTransparency(PPT As PowerPoint.Application, Pres As
> >> PowerPoint.Presentation)
> >> Const FileName = "TestTransparency.ppt"
> >> ' skipped some code to set the PPT and Pres objects
> >> PPT.Visible = True
> >> With Pres.Slides(1)
> >> .FollowMasterBackground = False
> >> .Background.Fill.BackColor.RGB = RGB(255, 255, 255)
> >> .Background.Fill.Transparency = 1
> >> End With
> >> Call Pres.SaveAs(FileName, ppSaveAsGIF)
> >> ' PowerPoint saves the GIF in a separate folder with the name of the
> >> selected slide
> >> End Sub
> >>
> >> In fact I am running this out of an MsAccess application using the
> >> PowerPoint library, but that should not make a difference.
> >>
> >> Also when doing this manually via the PowerPoint user interface the saved
> >> GIF file has no transparent background: In a slide use the right mouse
> >> button and select Format Background ... then select Solid Fill, Hide
> >> Background Graphics, (optionally select a color, I use white: RGB
> >> 255,255,255) and set Transparency to 100%. Then Save As... Other
> >> Formats...
> >> GIF.
> >>
> >
> > -----------------------------------------
> > Steve Rindsberg, PPT MVP
> > PPT FAQ: www.pptfaq.com
> > PPTools: www.pptools.com
> > ================================================
> >
> >
>

-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================


Re: Setting background transparent in VB and save as GIF (PPT 2007)
"Vincent Verheul" <v_ygf%[ at ]cc6.com> 11/11/2008 7:33:21 AM
Steve,

In the statement Call Pres.SaveAs(FileName, ppSaveAsGIF) the extension in
FileName is ignored. PowerPoint creates a Folder with the name FileName and
the gif image is saved within that folder. The name of the gif file is
Slide1.gif (the name depends on the user interface language). The same
happens when I use the Export statement (in PPT 2003, did not try with PPT
2007). It looks like this is part of the 'save as HTML' process in which a
separate folder is created that holds the images.

In my routine I continue to copy the Slide1.gif file to the correct folder
and rename it to FileName with the extension gif. After that I delete the
Slide1.gif file and folder.

Vincent


"Steve Rindsberg" <abuse[ at ]localhost.com> wrote in message
news:VA.000045c3.1982a7f6[ at ]localhost.com...
[Quoted Text]
> In article <491873ad$0$27209$ba620dc5[ at ]text.nova.planet.nl>, Vincent
> Verheul
> wrote:
>> Hi Steve,
>>
>> Thanks for your help and the 'Export' tip. Hopefully PowerPoint will get
>> an
>> update at some point in the future. In the meantime I'm looking into the
>> TransparentBlt function in library "Msimg32.dll" as a workaround.
>
> I'd be interested to hear what you come up with on that.
>
>> I save the PPT as GIF because the application creates HTML pages with
>> them.
>> Also included are mapped coordinates which create 'hot spots' in HTML.
>
> I wasn't questioning the choice of format, just the notion of saving it
> with a
> PPT extension, per your:
>
> Const FileName = "TestTransparency.ppt"
>
>
>
>>
>> Thx. Vincent
>>
>> "Steve Rindsberg" <abuse[ at ]localhost.com> wrote in message
>> news:VA.000045bd.18c78a69[ at ]localhost.com...
>> > As you point out, this is a PPT issue, not an Access/automation one.
>> > I can repro it here and have passed the bug on to someone at MS.
>> > Here's the version of your code I tested with (so as to involve only
>> > PPT):
>> >
>> > Sub TestTransparency2()
>> > Dim filename As String
>> > ' changed the save-as name to .GIF extension
>> > ' as PPT2007 is now fussier about these things
>> > ' why save a GIF as a PPT?
>> > filename = "c:\temp\TestTransparency.gif"
>> > ' skipped some code to set the PPT and Pres objects
>> > 'PPT.Visible = True
>> >
>> > With ActivePresentation.Slides(1)
>> > .FollowMasterBackground = False
>> > .Background.Fill.BackColor.RGB = RGB(255, 255, 255)
>> > .Background.Fill.Transparency = 1
>> >
>> > ' you can Export directly to the format you want,
>> > ' btw, which lets you spec the resolution
>> > ' rather than using Save As.
>> > ' Doesn't solve the current problem, alas.
>> > ' Like so:
>> > '.Export filename, "GIF", 800, 600
>> >
>> > End With
>> > Call ActivePresentation.SaveAs(filename, ppSaveAsGIF)
>> >
>> > End Sub
>> >
>> > In article <491807b7$0$27211$ba620dc5[ at ]text.nova.planet.nl>, Vincent
>> > Verheul
>> > wrote:
>> >> Hello,
>> >>
>> >> In PowerPoint 2003 I successfully use Visual Basic code to save a
>> >> Powerpoint
>> >> Slide into GIF format with a transparent background. This does not
>> >> seem
>> >> to
>> >> work anymore in PowerPoint 2007. I have selected the option "Save as
>> >> PowerPoint 97-2003".
>> >>
>> >> This is the code:
>> >>
>> >> Sub TestTransparency(PPT As PowerPoint.Application, Pres As
>> >> PowerPoint.Presentation)
>> >> Const FileName = "TestTransparency.ppt"
>> >> ' skipped some code to set the PPT and Pres objects
>> >> PPT.Visible = True
>> >> With Pres.Slides(1)
>> >> .FollowMasterBackground = False
>> >> .Background.Fill.BackColor.RGB = RGB(255, 255, 255)
>> >> .Background.Fill.Transparency = 1
>> >> End With
>> >> Call Pres.SaveAs(FileName, ppSaveAsGIF)
>> >> ' PowerPoint saves the GIF in a separate folder with the name of
>> >> the
>> >> selected slide
>> >> End Sub
>> >>
>> >> In fact I am running this out of an MsAccess application using the
>> >> PowerPoint library, but that should not make a difference.
>> >>
>> >> Also when doing this manually via the PowerPoint user interface the
>> >> saved
>> >> GIF file has no transparent background: In a slide use the right mouse
>> >> button and select Format Background ... then select Solid Fill, Hide
>> >> Background Graphics, (optionally select a color, I use white: RGB
>> >> 255,255,255) and set Transparency to 100%. Then Save As... Other
>> >> Formats...
>> >> GIF.
>> >>
>> >
>> > -----------------------------------------
>> > Steve Rindsberg, PPT MVP
>> > PPT FAQ: www.pptfaq.com
>> > PPTools: www.pptools.com
>> > ================================================
>> >
>> >
>>
>
> -----------------------------------------
> Steve Rindsberg, PPT MVP
> PPT FAQ: www.pptfaq.com
> PPTools: www.pptools.com
> ================================================
>
>


Re: Setting background transparent in VB and save as GIF (PPT 2007)
Steve Rindsberg <abuse[ at ]localhost.com> 11/11/2008 8:58:02 PM

[Quoted Text]
> In the statement Call Pres.SaveAs(FileName, ppSaveAsGIF) the extension in
> FileName is ignored. PowerPoint creates a Folder with the name FileName and
> the gif image is saved within that folder. The name of the gif file is
> Slide1.gif

Ah, ok. I hadn't actually tested with the filename var set to .ppt.

Still, I think I'd change it just on the theory that it might actually do what
you're telling it to someday and save a GIF in PPT clothing.

> (the name depends on the user interface language). The same
> happens when I use the Export statement (in PPT 2003, did not try with PPT
> 2007). It looks like this is part of the 'save as HTML' process in which a
> separate folder is created that holds the images.

If you use .Export on the presentation, probably so.

I was suggesting that you use the .Slide.Export method instead. Saves the
trouble of having to dredge the GIF out of the folder that PPT creates, move it
elsewhere and delete it. AND you can specify the resolution you want. Up to a
point, that is, if you're in 2007 SP1 where image exports are broken.

>
> In my routine I continue to copy the Slide1.gif file to the correct folder
> and rename it to FileName with the extension gif. After that I delete the
> Slide1.gif file and folder.

>
> Vincent
>
> "Steve Rindsberg" <abuse[ at ]localhost.com> wrote in message
> news:VA.000045c3.1982a7f6[ at ]localhost.com...
> > In article <491873ad$0$27209$ba620dc5[ at ]text.nova.planet.nl>, Vincent
> > Verheul
> > wrote:
> >> Hi Steve,
> >>
> >> Thanks for your help and the 'Export' tip. Hopefully PowerPoint will get
> >> an
> >> update at some point in the future. In the meantime I'm looking into the
> >> TransparentBlt function in library "Msimg32.dll" as a workaround.
> >
> > I'd be interested to hear what you come up with on that.
> >
> >> I save the PPT as GIF because the application creates HTML pages with
> >> them.
> >> Also included are mapped coordinates which create 'hot spots' in HTML.
> >
> > I wasn't questioning the choice of format, just the notion of saving it
> > with a
> > PPT extension, per your:
> >
> > Const FileName = "TestTransparency.ppt"
> >
> >
> >
> >>
> >> Thx. Vincent
> >>
> >> "Steve Rindsberg" <abuse[ at ]localhost.com> wrote in message
> >> news:VA.000045bd.18c78a69[ at ]localhost.com...
> >> > As you point out, this is a PPT issue, not an Access/automation one.
> >> > I can repro it here and have passed the bug on to someone at MS.
> >> > Here's the version of your code I tested with (so as to involve only
> >> > PPT):
> >> >
> >> > Sub TestTransparency2()
> >> > Dim filename As String
> >> > ' changed the save-as name to .GIF extension
> >> > ' as PPT2007 is now fussier about these things
> >> > ' why save a GIF as a PPT?
> >> > filename = "c:\temp\TestTransparency.gif"
> >> > ' skipped some code to set the PPT and Pres objects
> >> > 'PPT.Visible = True
> >> >
> >> > With ActivePresentation.Slides(1)
> >> > .FollowMasterBackground = False
> >> > .Background.Fill.BackColor.RGB = RGB(255, 255, 255)
> >> > .Background.Fill.Transparency = 1
> >> >
> >> > ' you can Export directly to the format you want,
> >> > ' btw, which lets you spec the resolution
> >> > ' rather than using Save As.
> >> > ' Doesn't solve the current problem, alas.
> >> > ' Like so:
> >> > '.Export filename, "GIF", 800, 600
> >> >
> >> > End With
> >> > Call ActivePresentation.SaveAs(filename, ppSaveAsGIF)
> >> >
> >> > End Sub
> >> >
> >> > In article <491807b7$0$27211$ba620dc5[ at ]text.nova.planet.nl>, Vincent
> >> > Verheul
> >> > wrote:
> >> >> Hello,
> >> >>
> >> >> In PowerPoint 2003 I successfully use Visual Basic code to save a
> >> >> Powerpoint
> >> >> Slide into GIF format with a transparent background. This does not
> >> >> seem
> >> >> to
> >> >> work anymore in PowerPoint 2007. I have selected the option "Save as
> >> >> PowerPoint 97-2003".
> >> >>
> >> >> This is the code:
> >> >>
> >> >> Sub TestTransparency(PPT As PowerPoint.Application, Pres As
> >> >> PowerPoint.Presentation)
> >> >> Const FileName = "TestTransparency.ppt"
> >> >> ' skipped some code to set the PPT and Pres objects
> >> >> PPT.Visible = True
> >> >> With Pres.Slides(1)
> >> >> .FollowMasterBackground = False
> >> >> .Background.Fill.BackColor.RGB = RGB(255, 255, 255)
> >> >> .Background.Fill.Transparency = 1
> >> >> End With
> >> >> Call Pres.SaveAs(FileName, ppSaveAsGIF)
> >> >> ' PowerPoint saves the GIF in a separate folder with the name of
> >> >> the
> >> >> selected slide
> >> >> End Sub
> >> >>
> >> >> In fact I am running this out of an MsAccess application using the
> >> >> PowerPoint library, but that should not make a difference.
> >> >>
> >> >> Also when doing this manually via the PowerPoint user interface the
> >> >> saved
> >> >> GIF file has no transparent background: In a slide use the right mouse
> >> >> button and select Format Background ... then select Solid Fill, Hide
> >> >> Background Graphics, (optionally select a color, I use white: RGB
> >> >> 255,255,255) and set Transparency to 100%. Then Save As... Other
> >> >> Formats...
> >> >> GIF.
> >> >>
> >> >
> >> > -----------------------------------------
> >> > Steve Rindsberg, PPT MVP
> >> > PPT FAQ: www.pptfaq.com
> >> > PPTools: www.pptools.com
> >> > ================================================
> >> >
> >> >
> >>
> >
> > -----------------------------------------
> > Steve Rindsberg, PPT MVP
> > PPT FAQ: www.pptfaq.com
> > PPTools: www.pptools.com
> > ================================================
> >
> >
>

-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================


Home | Search | Terms | Imprint
Newsgroups Reader