tab control question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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
 
Back
Top