WD97: Macro to Add a Command Button with Code to a Document

ID: Q185186

The information in this article applies to:

SUMMARY

The following Visual Basic for Applications sample code will give you user- intervention between macros.

This sample code runs in the following sequence:

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals 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 needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

   http://www.microsoft.com/support/supportnet/refguide/ 

To create this example, follow these steps:

1. Place the following sample code in the Visual Basic Editor.

   Sub AddACommandButtonWithCode()
      Dim oButton
      Set oButton =ActiveDocument.Shapes.AddOLEControl(Anchor:=Selection.
_
      Range, ClassType:= "Forms.CommandButton.1")
      With oButton.OLEFormat.Object
         .Caption = "Great Feature:"
         .Name = "myButtonOne"
      End With
      VBE.SelectedVBComponent.CodeModule.AddFromFile ("c:\buttoncode.txt")
      ActiveDocument.Activate
      Selection.Collapse
   End Sub

2. Type the following sample code in a text file, using Notepad.

   Sub myButtonOne_Click
      Msgbox "This code adds command button programmatically to document."
      'Removes the button from the document.
      ActiveDocument.Shapes(1).Delete
      'Removes the lines of code text from the document.
      Application.VBE.SelectedVBComponent.CodeModule.DeleteLines 1,7
   End Sub

3. Save the text file as "C:\ButtonCode.txt."

REFERENCES

For more information about getting help with Visual Basic for Applications, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q163435
   TITLE     : VBA: Programming Resources for Visual Basic for
               Applications

Additional query words: flow control vba toolbox design mode properties view code
Keywords          : kbdta 
Platform          : WINDOWS
Issue type        : kbinfo

Last Reviewed: April 8, 1999