Pages

Saturday, October 11, 2008

Word VBA add command buttons through code

Add CommandButton to Word Document using VBA (through AddOLEControl)

Here is one of the ways to add a command button on a Word document using Word VBA

Sub Macro_Add_Button()

Dim oCtl

Dim oCmd

Set oCtl = ActiveDocument.InlineShapes.AddOLEControl(ClassType:="Forms.CommandButton.1")

Set oCmd = oCtl.OLEFormat.Object

oCmd.Caption = "Click Me..."

End Sub


2 comments:

  1. Anonymous8:09 AM

    How do I Merge to a Printer using a Command button in word

    ReplyDelete
  2. Anonymous8:46 AM

    Do you want to Print the document. Add code to the click event of the printer

    ReplyDelete