A
Armin Zingler
Hello,
is it right that the cursor is *always* set back to it's default when the
application is idle?
cursor.current = cursors.waitcursor
'code taking some seconds
'after that the application is idle
Do I have to write
cursor.current = cursors.default
after the code above? Or even
dim c as cursor
c = cursor.current
cursor.current = cursors.waitcursor
'code taking some seconds
cursor.current = c
?
Thanks in advance
is it right that the cursor is *always* set back to it's default when the
application is idle?
cursor.current = cursors.waitcursor
'code taking some seconds
'after that the application is idle
Do I have to write
cursor.current = cursors.default
after the code above? Or even
dim c as cursor
c = cursor.current
cursor.current = cursors.waitcursor
'code taking some seconds
cursor.current = c
?
Thanks in advance