Re: [Gambas-user] Tabstrip.text question

2009-09-30 Thread Stefano Palmeri
Il mercoledì 30 settembre 2009 12:47:48 richard terry ha scritto: > I wondered if there was a way to change the text on the tab when it is not > the foremost tab, without having to do this: > > tabstrip1.index = 1 ' change to tab1 > tabstrip1.text = "some text" 'change its text > tab

[Gambas-user] Tabstrip.text question

2009-09-30 Thread richard terry
I wondered if there was a way to change the text on the tab when it is not the foremost tab, without having to do this: tabstrip1.index = 1 ' change to tab1 tabstrip1.text = "some text" 'change its text tabstrip1.index = 0 'change it back to tab0 Thanks in anticipation