How to set titlebar with VBA creating a Web Page

From: drsometimes (paul.v.kelly_at_verizon.net)
Date: 03/11/04


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?