tags:

views:

25

answers:

1

Hello every one. How can i get the name of selected Tabpage? Thanks.

+2  A: 

You can access the name through the tab control which contains the tab page.

string name = tabControl1.SelectedTab.Name;
Lewray
+1 because you were earlier :)
Abel