WD2000: Reviewing Toolbar Not Displayed with New Document (232400)
The information in this article applies to:
This article was previously published under Q232400 SYMPTOMS
After you display the Reviewing toolbar (on the View menu, point to Toolbars and then click to select Reviewing), when you create a new document, the Reviewing toolbar no longer appears.
NOTE: If you quit Word with the Reviewing toolbar displayed, when you restart Word, the Reviewing toolbar is automatically displayed.
WORKAROUND
To work around this behavior, you can create a macro and assign it to a toolbar button to easily display the Reviewing toolbar. Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
The following example Visual Basic for Applications procedure will display the Reviewing toolbar if it does not appear already and then dock the Reviewing toolbar: NOTE: If you click the button to display the Reviewing toolbar while the toolbar is displayed, the button does nothing.
Sub ShowReviewingToolbar()
Dim cbClip As CommandBar
Set cbClip = CommandBars("Reviewing")
With cbClip
If Not .Visible Then
.Visible = True ' Show toolbar.
.Position = msoBarTop ' Dock at top of application.
.RowIndex = msoBarRowLast ' Dock below other toolbars.
End If
End With
End Sub
STATUSMicrosoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article.
Modification Type: | Minor | Last Reviewed: | 8/23/2005 |
---|
Keywords: | kbbug kbnofix KB232400 |
---|
|