BackupFiles Property

 

The BackupFiles property returns or sets the global file backup state. Returns a Boolean.

 

Syntax

object.BackupFiles

object.BackupFiles = Backup

 

Parameter

Type

Description

Backup

Boolean

required; true to backup files

 

Example 1

This example demonstrates how to return whether or not backup files are created before saving.

 

Debug.Print mvApp.BackupFiles

 

Example 2

This example demonstrates how to allow a saved file to also be saved with a [.BAK] extension.

 

mvApp.BackupFiles = True

 

Used by: Application object