How to set titlebar with VBA creating a Web Page
From: drsometimes (paul.v.kelly_at_verizon.net)
Date: 03/11/04
- Next message: John Langhans [MSFT]: "Re: Creating a PDF file from Power Point"
- Previous message: Roderick O'Regan: "Re: Loading Add-ins"
- Next in thread: Shyam Pillai: "Re: How to set titlebar with VBA creating a Web Page"
- Reply: Shyam Pillai: "Re: How to set titlebar with VBA creating a Web Page"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 11 Mar 2004 14:16:19 -0800
The following code in Powerpoint 2000 creates a Web Page from a specified slide without the outline pane but also without a title in the browser titlebar:
strPath = ActivePresentation.Path & "\"
With ActivePresentation.PublishObjects(1)
.FileName = strPath & "webpage5.htm" 'just an example
.SourceType = ppPublishSlideRange
.RangeStart = 5
.RangeEnd = 5
.Publish
End With
Try as I might, I can't find how to set the titlebar or even how to retrieve the property! Any clues?
- Next message: John Langhans [MSFT]: "Re: Creating a PDF file from Power Point"
- Previous message: Roderick O'Regan: "Re: Loading Add-ins"
- Next in thread: Shyam Pillai: "Re: How to set titlebar with VBA creating a Web Page"
- Reply: Shyam Pillai: "Re: How to set titlebar with VBA creating a Web Page"
- Messages sorted by: [ date ] [ thread ]