Is it possible to bind a BindingSource (which its datasource is a collection of objects) to an UltraTabControl so that changes to the collection add and remove tabs automatically? (one UltraTab per object) How would I go about doing this? I'd like one of my objects properties to be the Ultratab.Text and a different property to be the ultraTab.Key.
You can use an UltraTabStrip control and set its DataSource and DataMember to your data source. Then set the TabTextMember property to indicate which member should be used for the taxt of each tab.
Thanks that did it. Also I was using UltraTabControl but the UltraTabStripControl works much better.