generally i use the code:
Do Until oScreen.WaitForCursor(row, col)
DoEvents
Loop
to check cursor position...
but if the cursor dont change position, the until run to the infinity loop, or not?
if yes, instead to use the Until statement is possible to use a for next similar:
for i=0 to 35000
'check psotion of cursor 4,5
next i
if i>35000 then
msgbox("Attention Extra locked,ecc...")
end if
code for this exception, please.
Sorry for my bad English.
Do Until oScreen.WaitForCursor(row, col)
DoEvents
Loop
to check cursor position...
but if the cursor dont change position, the until run to the infinity loop, or not?
if yes, instead to use the Until statement is possible to use a for next similar:
for i=0 to 35000
'check psotion of cursor 4,5
next i
if i>35000 then
msgbox("Attention Extra locked,ecc...")
end if
code for this exception, please.
Sorry for my bad English.