I'm trying to have a label appear when I mouse over a button (I have this working) but I want the location to be 5 pixels down and 5 to the right from the current position of the mouse. I was messing with Cursor.Position but that added the x and y to were the mouse was.
My code...
Any ideas? Thanks.
My code...
VB.NET:
[SIZE=2]
Label1.Location = [/SIZE][SIZE=2][COLOR=#0000ff]New[/COLOR][/SIZE][SIZE=2] System.Drawing.Point(Windows.Forms.Cursor.Position)
[/SIZE]
Any ideas? Thanks.