Remarks

Properties for the AutoRecover object determine the path and time interval for backing up all files.

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

Use the property of the AutoRecover object to set the path for where the AutoRecover file will be saved.

Example
The following example sets the path of the AutoRecover file to drive C.

Visual Basic for Applications
Sub SetPath() Application.AutoRecover.Path = "C:\" End Sub

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

Note
Units for the Time property are in minutes.
Visual Basic for Applications
Sub SetTime() Application.AutoRecover.Time = 5 End Sub

See also: