Macro for Ms Powerpoint 2003 on autosave

  • Thread starter Thread starter lkh
  • Start date Start date
L

lkh

hi

i encountered problem n error when i insert code into macro in ms powerpoint
2003.


Sub AutoOpen()
AutoSaving
End Sub
Sub AutoSaving()
Application.OnTime Now + TimeValue("00:00:10"), "Saving"
End Sub
Sub Saving()
ThisPresentation.Save
AutoSaving
End Sub


please help.
thanks
 
hi Chirag

can u please kindly help me by giving the full codng for macro on ms
poerpoint 2003 on autosave?

because i m totaly new in macro.

Sub AutoOpen()
AutoSaving
End Sub
Sub AutoSaving()
Application.OnTime Now + TimeValue("00:00:10"), "Saving"
End Sub
Sub Saving()
ThisPresentation.Save
AutoSaving
End Sub

what is the correct full coding for autosave on macro for ms powerpoint 2003?

thanks for your great help
lkh
 
Hi LKH,

You should look at the PPT FAQ for resources in learning to code in
PowerPoint VBA. PowerPoint is a very different animal than Excel or Word or
any other app I have ever run across.
www.pptfaq.com

We will gladly help you learn how to do your task, but rarely will we do the
task for you. ... something about teaching to fish.

I would also suggest changing from a 10 second cycle to 3 minutes or so.
Otherwise, one save event may overrun the previous one and many ugly things
are likely to happen (think in terms of Lehman Brother's).

There is a free sequential save add-in that may do some of what you want.
skp.mvps.org/seqsave.htm


Bill Dilworth
 
Follow-up Question: I have a macro-enabled ppt, which I would like to setup to autosave weekly with a time/date stamp file name. I am not completely new to macros, but haven't seen anything like this before.

Can anyone help?
 
Back
Top