U
Ulf Nilsson
Hi,
I loop through my document and when the macro finds a textbox with the text
"$&" it hides it with:
ActiveDocument.Bookmarks(Mid(fFalt.Name, 6)).Range.Font.Hidden = True
I also hides the checkbox with:
ActiveDocument.Bookmarks(fField.name).Range.Font.Hidden = True
When I want to show all the textboxes and checkboxes, I use:
Selection.WholeStory
ActiveDocument.ActiveWindow.View.ShowHiddenText = True
If Selection.Type = wdSelectionNormal Then
Selection.Font.Hidden = False
End If
BUT only the checkboxes will show, not the textboxes. I can see the code for
the textboxes using Alt + F9, so I have not deleted them.
I have also tried:
ActiveWindow.View.ShowHiddenText = True
What have I left to try? Any suggestion?
// Ulf
I loop through my document and when the macro finds a textbox with the text
"$&" it hides it with:
ActiveDocument.Bookmarks(Mid(fFalt.Name, 6)).Range.Font.Hidden = True
I also hides the checkbox with:
ActiveDocument.Bookmarks(fField.name).Range.Font.Hidden = True
When I want to show all the textboxes and checkboxes, I use:
Selection.WholeStory
ActiveDocument.ActiveWindow.View.ShowHiddenText = True
If Selection.Type = wdSelectionNormal Then
Selection.Font.Hidden = False
End If
BUT only the checkboxes will show, not the textboxes. I can see the code for
the textboxes using Alt + F9, so I have not deleted them.
I have also tried:
ActiveWindow.View.ShowHiddenText = True
What have I left to try? Any suggestion?
// Ulf