Tsb Control

  • Thread starter Thread starter Denise
  • Start date Start date
D

Denise

I have put a tab control on my form. When I open my form,
it goes to the first field on the form and not the top of
the page showing all the tab controls. I cannot figure
out how to get it to the top of the page...can anyone help.

Thank you.
 
Hello,

Try following code in the OnOpen event of the form:

DoCmd.GoToControl ("TabCtl0")

TabCtl0 is the name of the tab control. You would need to change it to
reflect your tab control name.

Regards,

Ki Yi
Microsoft Support

This posting is provided AS IS with no warranties, and confers no rights.
 
Back
Top