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
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.