tags:

views:

54

answers:

1

Hello,

I have a Parent form with some child forms. Imagine some of these child forms are opened and their name or their text are shown in a something like tabpage. now when i click on a tab page ,the related form must be active. What can i do?

Thanks.

A: 

If you know the name of the Tab you want to activate, use the Tabcontrol object to make it active

TabControl1.SelectedTab = MyChildTab

JoseK