Move to [Field] (1 Viewer)

D

D B Lawson

Guest
I want to be able to automatically move to a field depending on the result of a check box, ie:

If -1 then go to [field1]
If 0 then go to [field2]

How?
 

BarkerD

Registered User.
Local time
Today, 13:43
Joined
Dec 1, 1999
Messages
106
The easiest way to accomplish this would be to write a simple event procedure for the OnClick event of the checkbox.

Here is the code

if me![checkboxname].value=true then
field1.setfocus
else
field2.setfocus
endif
 

Users who are viewing this thread

Top Bottom