![]() |
|
#1
|
|||
|
|||
|
Original:
Buongiorno, dopo aver modificato in impostazioni avanzate la funzione "Usa modalità in sovrascrittura" e confermata la scelta ogni volta che riapro il file devo modificare nuovamente l'impostazione; non esiste un modo per evitare cio' ? grazie mille Google Translate: Hello, after changing the "Use overwrite mode" function in advanced settings and confirming the choice, every time I reopen the file I have to change the setting again; there is no way to avoid this? A thousand thanks Moderator's Note: This is an English-language forum. Try to post in English. Welcome to the forum.
Last edited by Charles Kenyon; 02-07-2022 at 07:11 AM. |
|
#2
|
||||
|
||||
|
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
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
|
#3
|
|||
|
|||
|
ti ringrazio; ho dimenticato di scrivere che la versione che uso e' la versione web, dove non riesco ad abilitare la funzione sovrascrittura; il codice vba non funzione su word web
|
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Overtype Mode in Word | Joanne | Word | 2 | 01-17-2018 09:52 AM |
| Microsoft Office Word Online Text Space is Different in Reading Mode from When it's in Editing Mode | darkjanggo | Word | 1 | 12-15-2015 05:06 PM |
Word 13 in compatibility mode
|
treadhead194 | Word | 4 | 12-23-2014 06:06 PM |
| Word does not ask do i want to overwrite a file on saving a file | sam2149 | Word | 2 | 03-24-2014 04:18 AM |
Word won't come back to normal mode from proofreading mode
|
prg4hire | Word | 2 | 09-25-2010 09:46 AM |