Set only two form fields to Behavior entering field = Select Entire Field

WinDancer

Registered User.
Local time
Yesterday, 19:14
Joined
Oct 29, 2004
Messages
290
I know this is an option for the entire database- is there a way to set this through VBA for ONLY two fields on a single form?

TIA,
Dave
 
Behavior Entering Field

1. insert

SetOption "Behavior Entering Field",2

in the Form_Load() event procedure.

2. insert
SetOption "Behavior Entering Field",0

in Lost_Focus() event procedure of the earlier Field in the Tab Order to enable the full field selection for the field you need.

3. insert the first statement in the Lost_Focus() event procedure of this field to reset it back to Form level.
 

Users who are viewing this thread

Back
Top Bottom