J
jay
We have Word 03 under XP pro. Various macros and stuff loaded by the
organization, I don't know if they're affecting this issue or not.
I have a doc with lots of includetext fields, and conditional page
breaks so that each new included file starts on an odd page.
I've created a macro that does that just fine, by updating all fields
then repaginating, then updating the first conditional, then
repaginating, etc...
I want to turn display of hidden text off before running everything
else, to make sure that it doesn't affect pagination.
The example code I've seen isn't working for me. For example, the
following
Sub ToggleHidden()
With ActiveWindow.View
.ShowHiddenText = Not .ShowHiddenText
End With
end sub
or just
ActiveWindow.View.ShowHiddenText = False
doesn't do anything here.
Any suggestions?
organization, I don't know if they're affecting this issue or not.
I have a doc with lots of includetext fields, and conditional page
breaks so that each new included file starts on an odd page.
I've created a macro that does that just fine, by updating all fields
then repaginating, then updating the first conditional, then
repaginating, etc...
I want to turn display of hidden text off before running everything
else, to make sure that it doesn't affect pagination.
The example code I've seen isn't working for me. For example, the
following
Sub ToggleHidden()
With ActiveWindow.View
.ShowHiddenText = Not .ShowHiddenText
End With
end sub
or just
ActiveWindow.View.ShowHiddenText = False
doesn't do anything here.
Any suggestions?