J
jd
I'm able to add a checkbox to word with the following code. However,
I've been unable to change the checkbox "caption". Anyone know how to
do this?
Sub InsertCheckBox()
Dim wdApp As Word.Application
Set wdApp = New Word.Application
wdApp.Documents.Add
wdApp.Visible = True
wdApp.ActiveDocument.ToggleFormsDesign
wdApp.Selection.InlineShapes.AddOLEControl
ClassType:="Forms.CheckBox.1"
End Sub
I've been unable to change the checkbox "caption". Anyone know how to
do this?
Sub InsertCheckBox()
Dim wdApp As Word.Application
Set wdApp = New Word.Application
wdApp.Documents.Add
wdApp.Visible = True
wdApp.ActiveDocument.ToggleFormsDesign
wdApp.Selection.InlineShapes.AddOLEControl
ClassType:="Forms.CheckBox.1"
End Sub