I was working on a simple program that reads the location of your mouse coordinates and displaying them inside a label. Now my question is:
Can I set location coordinates inside textbox1
and textbox2
(one for x and second for y) so that mouse pointer will change its real position as soon as I write the parameters?
For example:
private void Form1_MouseMove(object sender, MouseEventArgs e)
{
e.location.x = textbox1.text;
e.location.y = textbox2.text;
}