I would like to take a screenshot of a portion of the screen based on coordinates of the left mouse click.
What I can do up to now is get the coordinates with the mouse and show these in a label:
Form1.MousePosition.X
and Form1.MousePosition.Y
I get:
X: 369 Y: 256
I want to get the coordinates of a upper left corner and lower right corner and make a screenshot around where the mouse clicked.
IS this possible? How?