Move to [Field] (1 Viewer)

  • Thread starter Thread starter D B Lawson
  • Start date Start date
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?
 
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

Back
Top Bottom