Word 2010 VBA Code to show Sections and Formatted Page Number on Status bar
Hi experts
Is there a way through VBA to turn on Sections and Formatted Page Number in the Word Status Bar - see my image attached to show you what I'm referring to.
If there is no way of doing this through VBA, can someone tell me if this is possible to roll out via group policy settings?
Visual Basic ClassicMicrosoft Word
Last Comment
Jacques Bourgeois (James Burger)
8/22/2022 - Mon
Jacques Bourgeois (James Burger)
You forgot your attached image, but the following activate the status bar if it does not show:
Application.DisplayStatusBar = True
If your problem is that the Sections and PageNumber are grayed out and do not provide any information, then this is because the document does not yet have a second page or second section. They will light up as soon as you have more than one.
Fi69
ASKER
Sorry about the picture. I've now attached. The status bar is displayed. I want to customise it to show Sections and Page numbers. statusbar.jpg
Application.DisplayStatusB
If your problem is that the Sections and PageNumber are grayed out and do not provide any information, then this is because the document does not yet have a second page or second section. They will light up as soon as you have more than one.