[Windows] Set Cursor Position
Posted: Mon Jul 09, 2001 12:50 am
Restored from previous forum. Originally posted by wayne1.
Code updated for 5.20+
Edited by - wayne1 on 10 July 2001 03:25:14
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