08-16-2005 03:40 AM
08-16-2005 04:02 AM
I had a similar problem once - solved it by adjusting the drawing position of the child panel after taking into account the size of the text it contained. In other words, if the size of the child panel would cause it to be drawn too far to the right (for example), then simply move it to the left by an appropriate amount. Shouldn't be too hard to come up with a simple algorithm to implement this - if you're really stuck I can try to dig out my old one for you.
JR
08-16-2005 04:13 AM
08-17-2005 04:25 AM
Hi,
Is there any reason why you are not using the Tip Strip property? Or are we talking about two different things?
Take a look at the VI below (LV 7.1)
Regards.
JV
08-17-2005 04:30 AM
Hi Joris,
this is a LabView file, right? I'm working with LabWindows. Is there a way to import this file in my application?
08-17-2005 05:27 AM
Oeps, my mistake. Indeed, you are using LW/CVI.
Have you checked out the example on our NI site?
Regards.
08-17-2005 05:28 AM
This is the external link. The other one will probably not work.
08-17-2005 05:49 AM
08-17-2005 06:04 AM
Rather than use the ExtendedMouseEvents() function and the clunky EVENT_MOUSE_MOVE code, have you tried the simple SetCtrlToolTipAttribute() function? You get 'genuine' tooltips, which will be drawn off the edge of the panel, if necessary.
JR
08-17-2005 06:10 AM
Hi JR,
thanks a lot. This is exactly what I was looking for![]()