I want to change the position of the cursor over a particular label. I use:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Cursor.Position = Label17.Location
End Sub
but it doesn't change where I want it. I tried:
Label16.Location = Label17.Location
And this move the label16 properly.
So How do we move the cursor to the location of label17 or any label/object.