Macro for Ms Powerpoint 2003 on autosave

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
 
L

lkh

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
 
B

Bill Dilworth

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
 

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