A little BlitzUI help

Blitz3D Forums/Blitz3D Programming/A little BlitzUI help

JoeGr(Posted 2004) [#1]
Does anyone know how I can bring a TabPage to the front (just as if its tab had been clicked on with the mouse)?

Chris?

Thanks,


Odds On(Posted 2004) [#2]
Hi Joe,

You can use:

SendMessage mytab, "TM_SETINDEX", [Index of tab page]

to select a specific tab page. The index ranges from 1 to the number of tab pages attached to the specified tab.


JoeGr(Posted 2004) [#3]
I knew there must be a way. Many thanks Chris.