When the tab control has more tabs than can be displayed, two buttons appear to move to the next or previous tabs, and these buttons have tooltips of "Next" and "Previous". We localize our application, so I tried to find these strings in the resource strings (http://help.infragistics.com/NetAdvantage/WinForms/2010.2/CLR2.0/). I found what seemed likely ("TabManagerScrollNext" and "TabManagerScrollPrevious"), but this didn't replace the strings. The only other strings I found with "Next" and "Previous" were the resources "TaskPaneNextButtonToolTip" and "TaskPanePreviousButtonToolTip" which didn't seem likely, but I tried it and it also didn't work.
I've done the string customization several times before, and am making the calls for these strings in the same place, and the other strings are working, so doing the customization correctly isn't be the problem. Am I missing the actual string resource, are these string resources just undocumented, or is it just coming from somewhere else that doesn't use the resources?
Hi, I guess you are making instance of UltraWinTabControl resource customizer (Infragistics.Win.UltraWinTabControl.Resources.Customizer), but since the strings are located under the Win assembly you need to use the following code: Infragistics.Shared.ResourceCustomizer rc; rc = Infragistics.Win.Resources.Customizer; rc.SetCustomizedString("TabManagerScrollNext", "TheNext"); rc.SetCustomizedString("TabManagerScrollPrevious", "ThePrevious"); rc.SetCustomizedString("TabManagerScrollFirst", "TheFirst"); rc.SetCustomizedString("TabManagerScrollLast", "TheLast"); rc.SetCustomizedString("TabManagerScrollPreviousPage", "ThePreviousPage"); rc.SetCustomizedString("TabManagerScrollNextPage", "TheNextPage");
http://help.infragistics.com/NetAdvantage/WinForms/2010.2/CLR2.0/?page=Win_Resource_Strings.html
I hope this helps.Sincerely,DimiDeveloper Support EngineerInfragistics, Inc.
Awesome, that was it alright. Thanks a ton!