Can PPT be set to expire?

Status
Not open for further replies.
G

Guest

Can a powerpoint presentation be set to expire on a certain date? I would
like to distribute a PowerPoint that "dies" after a certain length of time.
 
B

Brian Reilly, MVP

Mama Kat,
Well sort of. Only through VBA and this is only tested for Slide Show
View.

Here's some sample VBA code that should be assigned to a full frame
no-fill AutoShape.

Option Explicit

'Developed by Brian Reilly, MVP
Public expireDate As Date

Sub expire()
expireDate = 8 - 31 - 2007
If expireDate < Now Then
Application.Quit
End If
End Sub

Assign the slideshow Action setting to the mouseclick Action setting.
Change the date as you see fit.

Not perfect. But should get you started or stopped.

Brian Reilly, MVP
 
B

Bill Dilworth

Hi Mama,

There are a few ways to do this.

1) Using VBA as Brian suggested, but if the user does not have VBA enabled,
then the show will not end as desired.

2) Using the DRM options that will enable use until a given date. This also
requires additions or it will not run.

3) Using an extra program called Secure Pack.



Option #3, in my opinion, is the best method.


--
Bill Dilworth
A proud member of the Microsoft PPT MVP Team
Users helping fellow users.

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
vestprog2@ Please read the PowerPoint FAQ pages.
yahoo. They answer most of our questions.
com
..
 
Status
Not open for further replies.

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top