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

ID: Q185186


The information in this article applies to:
  • Microsoft Word 97 for Windows


SUMMARY

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

This sample code runs in the following sequence:

  • The sample adds a command button to an open Word document.


  • It adds code from a text file to the current project.

    NOTE: In this example, the code that is copied to the document project is the Click event for the command button.


  • When the command button is clicked, another macro is run.


  • The button and code are removed from the document.



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/overview/overview.asp
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:

Q163435 VBA: Programming Resources for Visual Basic for Applications

Additional query words: flow control vba toolbox design mode properties view code

Keywords : kbdta
Version : WINDOWS:
Platform : WINDOWS
Issue type : kbinfo


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