AutoRecover Object

Microsoft Excel Visual Basic

AutoRecover Object

         
Application AutoRecover

Represents the automatic recovery features of a workbook. Properties for the AutoRecover object determine the path and time interval for backing up all files.

Using the AutoRecover object

Use the AutoRecover property of the Application object to return an AutoRecover object. 

Use the Path property of the AutoRecover object to set the path for where the AutoRecover file will be saved. The following example sets the path of the AutoRecover file to drive C.

Sub SetPath()

    Application.AutoRecover.Path = "C:\"

End Sub

Use the Time property of the AutoRecover object to set the time interval for backing up all files.

Note   Units for the Time property are in minutes.

Sub SetTime()

    Application.AutoRecover.Time = 5

End Sub