Hi
We are tearing our hair out over getting the selected tab to change on a tabstrip after running some vb code. We are loading ascx's on demand using an adapted version of the Telerik demo. It all works fine - the ascx loads, populates itself, etc and shows on the multipage - but we are loading each ascx in a different tab and we cannot get the tabstrip selection to change. For example, we can press a search button on the ascx in the search tab and we then load a grid ascx which should appear on the list tab. The grid loads but the search tab still has red text (our "selected" font setting).
Even Telerik support have not been able to show us how to do this - - they re-write the page to use their demo mothod, but this does not give us the full functionality we are looking for. All the rest of our functionality is fine so we don't want to lose this.
Does ANYONE know how we can write a line of code in vb that will make the seleted tab change on the tabstrip? We have tried:
In hope, Neil
We are tearing our hair out over getting the selected tab to change on a tabstrip after running some vb code. We are loading ascx's on demand using an adapted version of the Telerik demo. It all works fine - the ascx loads, populates itself, etc and shows on the multipage - but we are loading each ascx in a different tab and we cannot get the tabstrip selection to change. For example, we can press a search button on the ascx in the search tab and we then load a grid ascx which should appear on the list tab. The grid loads but the search tab still has red text (our "selected" font setting).
Even Telerik support have not been able to show us how to do this - - they re-write the page to use their demo mothod, but this does not give us the full functionality we are looking for. All the rest of our functionality is fine so we don't want to lose this.
Does ANYONE know how we can write a line of code in vb that will make the seleted tab change on the tabstrip? We have tried:
myTab = myTabstrip.FindTabByValue(strCurrentMode) 'finds the correct tab
myTab.Selected =
True
In hope, Neil