I would like to change the title bar text (caption) on the ultraspellchecker control...I would like to change it programmatically to the Text property of the groupbox that the ultratexteditor is contained in...here's my code for spellchecking all the ultrawintexteditors on the seletecd ultrawintab:
// get group boxes on selected tab, then spellcheck the text editors in those group boxes ForEach gb Collection(ultraTabControlPsychAssessment.SelectedTab.TabPage.Controls) Type(GroupBox) ForEach ute Collection(gb.Controls) Type(Infragistics.Win.UltraWinEditors.UltraTextEditor)
If ute.Visible
ultraSpellChecker.ShowSpellCheckDialog(ute) Endif Endfor Endfor
Using infragistics 10.1 controls in VS2008 under ASNA Visual RPG language
Is this possible?? Thanks.
Hello ,
If you want to change the title of the UltraSpellChecker, you should use “Resource String” in order to set the needed text to the desired component. How to use Resource String you could find here:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2010.2/CLR2.0/html/Win_Customizing_Assembly_Resource_Strings.html
the resource that I think you need is “LS_SpellCheckForm” and the full available list of recourse strings for UltraSpellChecker you could find here:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2010.2/CLR2.0/html/WinSpellChecker_Resource_Strings.html
Please let me know if you have any further questions.
thanks! I wish I could change more properties, but the title bar caption fix is exactly what I needed...