D
DS
I have this code doing a constat loop. My question is:
Will this affect any other loops that might start? Will it disrupt any
timers or slow my system down? Anything I have to watch out for? This is
in a multi-user / multi- machine system.
Public Declare Function ShowCursor Lib "user32" _
(ByVal bShow As Long) As Long
Public Sub ShowPointer()
Do While ShowCursor(1) < 0
DoEvents
Loop
End Sub
Public Sub HidePointer()
Do While ShowCursor(0) >= -1
DoEvents
Loop
End Sub
Thanks
DS
Will this affect any other loops that might start? Will it disrupt any
timers or slow my system down? Anything I have to watch out for? This is
in a multi-user / multi- machine system.
Public Declare Function ShowCursor Lib "user32" _
(ByVal bShow As Long) As Long
Public Sub ShowPointer()
Do While ShowCursor(1) < 0
DoEvents
Loop
End Sub
Public Sub HidePointer()
Do While ShowCursor(0) >= -1
DoEvents
Loop
End Sub
Thanks
DS