this is my code:
private void MoveCursor(int x, int y)
{
// Set the Current cursor, move the cursor\'s Position,
// and set its clipping
You probably found your answer already or figured out a workaround, but since I had this same issue I thought I'd post what I discovered.
The error popped up for me when I added a reference to System.Windows.Forms.DataVisualization.Charting. It seems that the way the cursor works with that reference is different from usual, and overrides the typical Cursor.Position.
In my case, it was as simple as replacing "Cursor.Position" with "MousePosition".