[Windows] Set Cursor Position

Share your advanced PureBasic knowledge/code with the community.
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

[Windows] Set Cursor Position

Post by BackupUser »

Restored from previous forum. Originally posted by wayne1.

Code updated for 5.20+

Code: Select all

; SET CURSOR POSITION WINDOWS PB VERSION
; just a useless example
While i < 500
  SetCursorPos_( i,i );
  i=i+3
  Delay(50)
Wend
Edited by - wayne1 on 10 July 2001 03:25:14