D D B Lawson Guest Jan 19, 2000 #1 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?
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?
B BarkerD Registered User. Local time Today, 18:10 Joined Dec 1, 1999 Messages 106 Jan 19, 2000 #2 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
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