Microsoft KB Archive/106318

From BetaArchive Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

WD: WordBasic Examples: NewToolbar

Q106318



The information in this article applies to:


  • Microsoft Word for Windows, versions 6.0, 6.0a, 6.0c
  • Microsoft Word for Windows, version 7.0
  • Microsoft Word for the Macintosh, versions 6.0, 6.0.1





SUMMARY

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

Syntax

NewToolbar .Name = text [, .Context = number] 

Example

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
Issue type : kbhowto
Technology :


Last Reviewed: November 4, 2000
© 2001 Microsoft Corporation. All rights reserved. Terms of Use.