Tabbed Control

  • Thread starter Thread starter Kevin
  • Start date Start date
K

Kevin

I have an application with a tabbed control on one of my
forms. There are related forms that when I close the
related form, I want to return to a specific tab on the
tabbed control. How can I do this?

Thanks in advance.

Kevin
 
Kevin said:
I have an application with a tabbed control on one of my
forms. There are related forms that when I close the
related form, I want to return to a specific tab on the
tabbed control. How can I do this?

Forms!NameOfForm!NameOfTabControl.Value = 0

Will cause the first page of the TabControl to be selected. Using the value 1 would
select the second page etc..
 
Back
Top