A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Powerpoint, Publisher and Visio » Powerpoint
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Can PPT be set to expire?



 
 
Thread Tools Display Modes
  #1  
Old September 4th, 2007, 01:54 AM posted to microsoft.public.powerpoint
Mama Kat
external usenet poster
 
Posts: 16
Default Can PPT be set to expire?

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.
  #2  
Old September 4th, 2007, 02:15 AM posted to microsoft.public.powerpoint
Brian Reilly, MVP
external usenet poster
 
Posts: 220
Default Can PPT be set to expire?

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

On Mon, 3 Sep 2007 17:54:01 -0700, Mama Kat
wrote:

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.

  #3  
Old September 4th, 2007, 03:22 AM posted to microsoft.public.powerpoint
Bill Dilworth
external usenet poster
 
Posts: 1,455
Default Can PPT be set to expire?

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.
http://skp.mvps.org/securepack/index.htm


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


--
Bill Dilworth
A proud member of the Microsoft PPT MVP Team
Users helping fellow users.
http://billdilworth.mvps.org
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
vestprog2@ Please read the PowerPoint FAQ pages.
yahoo. They answer most of our questions.
com www.pptfaq.com
..

"Mama Kat" wrote in message
...
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.



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 05:10 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.