![]() |
|
#14
|
|||
|
|||
|
I'm not sure what you mean by "use keystrokes to show the background functions." You may mean "Reveal codes." Word has an equivalent.
Word's Reveal Formatting Codes Word for Wordperfect Users In the other thread, Word MVP Stefan Blom posted a macro that converts blank fields (which are the source of your problem) into MacroButton fields. That works on your form. Code:
Sub BlankFieldCodeRepair()
' Stefan Blom, MVP, June 2021
' https://answers.microsoft.com/en-us/msoffice/forum/all/in-word-when-the-bookmarks-are-visible-the-f11-key/b38a5817-98dd-4407-9761-f53fa37555b6
' Changes blank field to MacroButton prompt
'
Dim f As Field
For Each f In ActiveDocument.Fields
If f.Type = wdFieldEmpty Then
f.Code.Text = "MACROBUTTON NoMacro Type here"
End If
Next f
End Sub
By the way, I do not know what happened to the attachments but I've re-attached them. |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Cursor disappears while entering text
|
BackpackerBill | Word | 4 | 01-19-2015 12:10 AM |
| Tabbing in forms | Barbara | Word | 6 | 04-29-2013 05:43 AM |
No tabbing, no returns in forms?
|
rdowney1 | Word | 7 | 06-29-2012 08:35 AM |
Text disappears suddenly in office table
|
anano | Word | 1 | 03-14-2012 12:36 AM |
| cursor disappears | ehamike | Word | 0 | 04-03-2009 07:56 PM |