The problem is that I have a continuous form, and there is a column that the tooltip is not the same for all rows.
For instance:
Users are used to transfer registers as numbers, so I will display the number, and I would display the full name in the tooltip. This way I save space and there is no scrollbar.
What I did is put a hidden field with a tooltip value, then in my current form event I have
txtRegionID.controltipText = hiddenRegionName
As I thought, a tooltip is set for the first value for each row.
I think this is not possible, because the continuous form is similar to one form, so it is always the same control, and you cannot change its properties depending on the records.
I'm right? Is there any way to do this?
thanks
source share