Hi,
I textboxes with tooltipinfo and i want that my tooltiptext informations comes from my data base.
But i don't know how to do !
Thank you for your help
Laurent (French)
Thank you very much for your help.
Laurent
There is no way to bind a tooltip, so you have to do this in code and set the text of the tooltip explicitly.
Thank you for your answer,
I have a several items in my products catalog. So all my textboxes are connected by a binding source et navigatorbindingsource.
I don't want to create more codes with stored procedure to have the "Localized Text" information.
I would like to make a link with bindings. in this case, when i will navigate with my navigator_source_binding my tiptext will change at the same time.
Example of code (of course it doesn't works) :
UltraToolTipInfo tooltipInfo = this.ultraToolTipManager1.GetUltraToolTip(this.textBox1);tooltipInfo.ToolTipText.bindings = MyBindingSource1.tables("blabla"."Column1")
Sorry for my english
Hi Laurent,
Where the text comes from doesn't matter. You can create your tooltips at run-time like so:
UltraToolTipInfo tooltipInfo = this.ultraToolTipManager1.GetUltraToolTip(this.textBox1);tooltipInfo.ToolTipText = "Localized Text";