04-29-2017 03:05 PM
hi everyone,
i want ask you something.
I want show an help message when the cursor pass on a label like a comics.
is it possible?
thanks in advance
Solved! Go to Solution.
05-01-2017 08:10 AM
Would a tooltip work? Here's an example for reference:
Example Programs: Attaching ToolTips to LabWindows/CVI Controls
Hope this helps!
Trent
05-06-2017 02:26 PM
thanks! it is perfect!
05-07-2017 11:57 AM
Tooltips are a powerful means of deisplaying help on controls. With recent versions of CVI you no more need to use the tooltip instrument driver since they have been integrated in the IDE.
Starting from CVI2012, infact, you can set the tooltip text in the UI editor:
You can also set it programmatically with the commands:
SetCtrlToolTipAttribute (panelHandle, PANEL_CONTROL, CTRL_TOOLTIP_ATTR_TEXT, "This is the tooltip text"); SetCtrlToolTipAttribute (panelHandle, PANEL_CONTROL, CTRL_TOOLTIP_ATTR_ENABLE, 1);
05-16-2017 02:21 PM
thanks a lot!