Need a little help here, if someone has the time. I have a form with a tabctl on it with 5 pages. On the first page (page index 0) is a checkbox. when the user clicks the checkbox and value is true I want the focus to be set to a textbox on a different page (page index 1). I tried:
chkbox OnClick event
if chkbox.value = true then
form_customer.tabctl14.page1.date.setfocus
else
othertxtbox.setfocus
endif
This doesn't work. Seems logical to me, but to no avail it doesn't. Any suggestions?
chkbox OnClick event
if chkbox.value = true then
form_customer.tabctl14.page1.date.setfocus
else
othertxtbox.setfocus
endif
This doesn't work. Seems logical to me, but to no avail it doesn't. Any suggestions?