How can I rename a TabPanel tab at runtime?

I have looked everywhere, but how can I rename a TabPanel tab at runtime? I am using os x.

TabPanel.Caption(Index)

Try the following:

TabPanel1.caption(0)="One"

(assuming “TabPanel1” is the name of your tab panel)

And Tim beat me to it… :slight_smile:

Well duh, I guess I need more sleep & less coding. Sometimes the most obvious things are right there. Thanks.