Check box in Word

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to insert a check box that changes from unchecked to checked when clicked on in a form. How do I go about this without having to use the check box properties dialog box? Thank You
 
Hi, Omar,

See this reply to a similar question:
http://groups.google.com/[email protected]

Note that the last item in Suzanne's reply, "these check boxes require
a double-click because they are MacroButtons", is something you can
change. To make the Macrobuttons require only a single click, add two
more macros to the template:

Public Sub AutoNew()
Options.ButtonFieldClicks = 1
End Sub

Public Sub AutoOpen()
Options.ButtonFieldClicks = 1
End Sub
 
Back
Top