I need to monitor the Cursor.Position.X as it moves from the left side of my screen #1 (the primary screen) to the right side of screen #2, which is set up as an extension of the primary screen and to the right of it. They are both HD so my total viewing area is 3840 x 1050, and I need to continuously monitor the value of 'x' as it changes from zero to 3840.
In Visual Basic: Dim MposX as integer = Cursor.Position.X only works for the primary screen. How can I get it to continuously provide the X value numbers (1921 to 3840) when the cursor is on screen #2?