Morning,
ive created 4 new tabs in the ultratabcontrol. Through VB.NET code how do i get to the next tab using a next button?
ultratabcontrol.selectedtab = ??????
ta
Hello misterRafter,
I am not sure what do you mean by "Next Button" , is this part of your UltraTab control or this is kind of stand alone button?
If you need programatically do select any tab from your UltraTab control you could use one of the below approaches:
ultraTabControl1.SelectedTab = ultraTabControl1.Tabs(3) ultraTabControl1.Tabs(2).Selected = true
Basically ive got a NEXT button outside the tabcontrol so it will allow me to go to the next tab.
i used this bit, works fine in the button click event.
ultraTabControl1.Tabs(2).Selected = true