WD: WordBasic Examples: NewToolbar |
Q106318
This article contains an example that demonstrates the use of the following WordBasic statement or function:
NewToolbar
This article supplements the information in online Help. To open this Help
topic in Word for Windows, choose Contents from the Help menu and then
choose the "Programming with Microsoft Word" topic. In Word for the
Macintosh, click the Help icon, select Microsoft Word Help and choose
"Programming with Microsoft Word."
NewToolbar .Name = text [, .Context = number]
Sub MAIN
On Error Goto duplicatename
' Creates a toolbar stored in the Normal template
' named "New" if one does not already exist.
NewToolbar .Name = "New", .Context = 0
Goto done
duplicatename: ' NOTE: This line MUST be left aligned.
MsgBox "A toolbar named 'New' already exists."
done: ' NOTE: This line MUST be left aligned.
End Sub
Additional query words: winword word6 word95 macword word7
Keywords : wordnt kbmacroexample winword ntword macword word7 word95
Issue type : kbhowto
Technology :
|
Last Reviewed: November 4, 2000 © 2001 Microsoft Corporation. All rights reserved. Terms of Use. |