01-19-2009 09:09 AM
Hi,
I created several picture buttons. Now I'm searching for a solution to display a short explanation text, when the mouse cursor stays over the button.
Br
Andreas
01-19-2009 10:10 AM
01-20-2009 12:03 AM
Thank you
Andreas
01-20-2009 05:10 AM
01-20-2009 05:16 AM
Hi,
I'm using Labwindows/CVI 9.0.
You also have to enable the tooltip for each control.
e.g.
SetCtrlToolTipAttribute (pnlHndle_main, PANEL_PAUSEPLAY_SYMBOL, CTRL_TOOLTIP_ATTR_TEXT, "Pause");
SetCtrlToolTipAttribute (pnlHndle_main, PANEL_PAUSEPLAY_SYMBOL, CTRL_TOOLTIP_ATTR_ENABLE, 1);
and it seems, that it doesn't work, if the control is dimmed, but that's OK.
You also have to stay a little bit on the control and do nothing, than it will be displayed. Afterwards you have to move the cursor far away, that it will be displayed again.
But it works.
Br
Andreas