Mrrrr's Forum (VIEW ONLY)
Un forum care ofera solutii pentru unele probleme legate in general de PC. Pe langa solutii, aici puteti gasi si alte lucruri interesante // A forum that offers solutions to some PC related issues. Besides these, here you can find more interesting stuff.
Lista Forumurilor Pe Tematici
Mrrrr's Forum (VIEW ONLY) | Reguli | Inregistrare | Login

POZE MRRRR'S FORUM (VIEW ONLY)

Nu sunteti logat.
Nou pe simpatie:
ubytzika_senzuala Profile
Femeie
22 ani
Vrancea
cauta Barbat
22 - 45 ani
Mrrrr's Forum (VIEW ONLY) / Tutoriale si Ghiduri Utile // Tutorials and useful guides / [WORD] VBA to Make Toggle Button to Enable / Disable OverType Moderat de TRaP, TonyTzu
Autor
Mesaj Pagini: 1
Mrrrr
AdMiN

Inregistrat: acum 17 ani
Postari: 2186
Even though in the word document's taskbar (line under your document showing page numbers, word count, language, zoom etc.) you can click on the word INSERT or OVERTYPE to change its value (click on OVERTYPE to disable it or on INSERT to activate OVERTYPE), maybe it is useful to have a VBA code do it.

In case the OVERTYPE/INSERT function is not available in your document's taskbar and you want to activate it, right click on the document taskbar and select Overtype in the list that appears.

Activating/deactivating Overtype by default uses the Insert key on your keyboard. Just press it and type.

In case you want a VBA code to do that for you, or pressing the Insert key doesn't work (maybe you assigned Insert key to another command), in a VBA module copy/paste the following:


Sub ToggleOvertype()
    If Options.Overtype = True Then
        Options.Overtype = False
    Else
        Options.Overtype = True
    End If
End Sub


The only downside of this is that you can't see which is active, unless you show Overtype in your document's taskbar.


_______________________________________


pus acum 5 ani
   
Pagini: 1  

Mergi la