View Single Post
 
Old 02-07-2022, 10:09 PM
gmayor's Avatar
gmayor gmayor is offline Windows 10 Office 2019
Expert
 
Join Date: Aug 2014
Posts: 4,138
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

L'opzione di sovrascrittura si applica a tutti i documenti. Cambialo per uno e cambia per tutti. L'impostazione viene memorizzata nel modello normale. Se si desidera impostarlo per un documento, è possibile aggiungere una semplice macro al normale modulo modello "ThisDocument" come segue:
Code:
Private Sub Document_Open()
      If ActiveDocument.Name = "DocumentName.docx" Then
          Options.Overtype = True
      Else
          Options.Overtype = False
      End If
  End Sub
Ciò forzerà l'opzione quando viene aperto il documento "DocumentName.docx". Successivamente l'apertura di un altro documento attiverà nuovamente le impostazioni.
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote