Guest User

Untitled

a guest
Apr 25th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. LPPOINT cursorPos;
  2. GetCursorPos(cursorPos);
  3.  
  4. int x = 0;
  5. x = cursorPos->x;
  6. int y = 0;
  7. y = cursorPos->y;
  8.  
  9. listBox1->Items->Add(x);
  10. listBox2->Items->Add(y);
Add Comment
Please, Sign In to add comment