How to Disable AutoRecovery using Word VBA
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
Word Auto Recovery will be a nemesis if you are working with large documents. It can be disabled by using the following code
Sub DisableAutoRecovery()
Options.SaveInterval = 0
End Sub
- Login or register to post comments
- Feed: vbadb feed
- Original article
