tab control question

M

mhmaid

hi
i have five tab control pages in my form, and i want access to take me
automatically to the next form when i exit the last field in the first page .
is this possibe?
 
T

tina

in the last control on the first tabpage, add code in the Exit event
procedure to move the focus to the first control on the next tabpage, as

Me!ControlName.SetFocus

hth
 
Top