Link to home
Start Free TrialLog in
Avatar of Fi69
Fi69

asked on

PowerPoint File Summary >>> what dialog box

I experts

I have a userform that gathers information I want to store into PowerPoint.

The code below is from Word. It stores the data from the form into the Document Properties Summary (manual way Office Button > Prepare > Document Properties > Summary tab.)

I want to do the same thing in PowerPoint. Any ideas how I do this?



Dim dp As Object
    Set dp = Dialogs(wdDialogFileSummaryInfo)

    'Store Document Summary
    dp.Title = Me.txtDocSummaryTitle
    dp.Subject = Me.txtDocSummarySubject
    dp.Author = Me.TxtDocSummaryAuthor
    dp.Keywords = Me.txtDocSummaryKeywords
    dp.Comments = Me.txtDocSummaryComments
    dp.Execute

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of borgunit
borgunit
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Fi69
Fi69

ASKER

Thanks for that - it lead to look for working with the builtin properties which lead me to the following site.

http://www.pptfaq.com/FAQ00751.htm