Hi,
How to write a program where as the mouse pointer is used , a dangling or a trail text comes along with it.
Thank You.
shoba
Printable View
Hi,
How to write a program where as the mouse pointer is used , a dangling or a trail text comes along with it.
Thank You.
shoba
This code in the mousemove sub of the required form should 'peg' the top and left properties of a label control to the current position of the cursor.
formname.labelname.top = x
formname.labelname.left = y
You'll need to add code to mousedown, so that when you click the form, the text 'lets go' and stays at the point selected.
Hope this helps.
Woody