ID: Q106318
The information in this article applies to:
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."
WARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS ARTICLE IS AT YOUR OWN RISK. Microsoft provides this macro code "as is" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.
NewToolbar .Name = text [, .Context = number]
This sample macro creates a toolbar named "New" to be stored in the Normal template if one does not already exist.
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
Version : WINDOWS:6.0,6.0a,6.0c,7.0,7.0a; MACINTOSH:6.0,6.0.1,6.0.1a
Platform : MACINTOSH Win95 WINDOWS winnt
Issue type : kbhowto
Last Reviewed: February 4, 1998