View Single Post
 
Old 10-15-2013, 09:34 AM
Charles Kenyon Charles Kenyon is offline Windows Vista Office 2010 32bit
Moderator
 
Join Date: Mar 2012
Location: Sun Prairie, Wisconsin
Posts: 9,533
Charles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant future
Default

When a user clicks anywhere in a document protected for forms (other than in an active formfield) the focus moves to a page with formfields that are active.

Assuming you are using legacy form fields, you can designate a macro to run on exit from a formfield.

You can put the following in an AutoOpen and AutoNew macro in your form template:

Code:
Sub AutoOpen()
' Set macro button response to one click rather than double-click
' Macro written by Charles Kenyon based on help from Bill Coan on newsgroup
'
   Options.ButtonFieldClicks = 1
'
End Sub
This makes a single click activate the macrobutton.

Making Forms with Microsoft Word
Reply With Quote