I have a form "frmMyForm" with four tabs
"Page1"
"Page2"
"Page3"
"Page4"
there is a control on page4 named "txt35".
When the user selects the forth tab I want to fire an event, if txt35 is set to "Yes"
The form is not running the event...
Private Sub Page4_Click()
if forms!frmMyForm!Page4!txt35 =yes then
msgbox "Reading correctly"
end if
I don't think the form is self-aware of the tabs... help?
Thanks,
Dave
"Page1"
"Page2"
"Page3"
"Page4"
there is a control on page4 named "txt35".
When the user selects the forth tab I want to fire an event, if txt35 is set to "Yes"
The form is not running the event...
Private Sub Page4_Click()
if forms!frmMyForm!Page4!txt35 =yes then
msgbox "Reading correctly"
end if
I don't think the form is self-aware of the tabs... help?
Thanks,
Dave