Change tabs

BlitzMax Forums/MaxGUI Module/Change tabs

Hezkore(Posted 2011) [#1]
Small question, how do I change tabs manually?

I'm talking about the Tabber gadget (CreateTabber) of course.
I've created 4 tabs and I want to switch between them myself but can't find any function for that, is there even one? :S
Looking for something like TabGadget.SetTab(Index:int)


jsp(Posted 2011) [#2]
You can use:
SelectGadgetItem(Tabber,Newtab)
but you need also to take care about the shown content of the tabber (depends on your app).


Hezkore(Posted 2011) [#3]
Thanks jps, it's perfect! ;)