Answered by:
Is there any hot-key or shortcut to disable horizontal scroll bar in MS Word.

Question
-
Is there any hot-key or shortcut to disable horizontal scroll bar in MS Word. I use a lot of keyboard shortcuts & I have noticed my horizontal scroll bar just goes missing all of a sudden.
also -
If I have opened 10 docx files & I want to save all of them in one go. How to do so? This option is available in MS Excel 2007. I use Word 2007.
- Edited by MSP-Learner Saturday, March 10, 2012 6:47 AM
- Moved by Max Meng Monday, March 12, 2012 2:13 AM moving to a more appropriate forum (From:Outlook IT Pro Discussions)
Saturday, March 10, 2012 6:34 AM
Answers
-
http://office.microsoft.com/en-us/word-help/make-the-switch-to-word-2010-RZ101816356.aspx?section=6
And you can add any shortcut to Ribbon. Take look on MS site
Oskar Shon, Office System MVP
Press
if Helpful; Answer when a problem solved
Saturday, March 10, 2012 10:10 AM -
Hi Ankit,
Are you sure you still need the horizontal scroll bar when it disappeared?
-
To save and close the document at one time, use the following macro:
Sub Save&CloseAll()
'Save & Close all open documents
With Application
.ScreenUpdating = False
Do Until .Documents.Count = 0
.Documents(1).Close SaveChanges:=wdSaveChanges
Loop
.Quit SaveChanges:=wdSaveChanges
End With
End SubMax Meng
TechNet Community Support
- Marked as answer by Max Meng Saturday, March 31, 2012 5:00 AM
Saturday, March 24, 2012 2:58 PM
All replies
-
http://office.microsoft.com/en-us/word-help/make-the-switch-to-word-2010-RZ101816356.aspx?section=6
And you can add any shortcut to Ribbon. Take look on MS site
Oskar Shon, Office System MVP
Press
if Helpful; Answer when a problem solved
Saturday, March 10, 2012 10:10 AM -
Hi Ankit,
Are you sure you still need the horizontal scroll bar when it disappeared?
-
To save and close the document at one time, use the following macro:
Sub Save&CloseAll()
'Save & Close all open documents
With Application
.ScreenUpdating = False
Do Until .Documents.Count = 0
.Documents(1).Close SaveChanges:=wdSaveChanges
Loop
.Quit SaveChanges:=wdSaveChanges
End With
End SubMax Meng
TechNet Community Support
- Marked as answer by Max Meng Saturday, March 31, 2012 5:00 AM
Saturday, March 24, 2012 2:58 PM -
Hello,
Follow the link below. IT will help you.
http://www.clearhelp.com/word/CH.asp?I=387&v=2
Monday, March 26, 2012 6:12 AM -
I have the same problem with the scrollbar disappearing in Word 2010 -- it even disappeared when I had it checked in Word 2010's options!
This VBA macro fixed the problem, toggles on/off, can be easily modified for the vertical bar:
ActiveWindow.DisplayHorizontalScrollBar = Not ActiveWindow.DisplayHorizontalScrollBar MsgBox ".DisplayHorizontalScrollBar is now " & ActiveWindow.DisplayHorizontalScrollBar
BTW, someone somewhere said that one of the scrollbars conflicts with autotext popups appearing, I haven't verified that. Autotext popups would be controlled by a separate dialog box related to 'proofing'
- Edited by PLagoon2 Monday, October 22, 2012 4:32 PM
Monday, October 22, 2012 4:31 PM