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
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