is there a way to browse bitween tabPages using a ListBox control?
-
Hi, I would like to create an options dialog such as Windows Live messenger has. Basicly I would like to use a listbox to control the tabPages in a tabControl. Unless; you have a better Idea to create such a dialog... thank you Leeoz
What is wrong with the tabs themselves?
-
Hi, I would like to create an options dialog such as Windows Live messenger has. Basicly I would like to use a listbox to control the tabPages in a tabControl. Unless; you have a better Idea to create such a dialog... thank you Leeoz
Just handle the
SelectedIndexChanged
event of your listbox and do something like this in there:tabControl.SelectedIndex = ...; // index of the tab
// or
tabControl.SelectedTab = ...; // an actual tab control instance
I don't use Windows Live messenger, so I hope that's what you actually wanted to know. regards