Idle event?

  • Thread starter Thread starter Thomas
  • Start date Start date
T

Thomas

How do you add events to the idle process? I know how to do it in Delphi and
VC++ but not VB, anyone know? I would rather use the idle event instead of a
timer event.

Thanks
 
Thomas said:
How do you add events to the idle process? I know how to do it in
Delphi and VC++ but not VB, anyone know? I would rather use the idle
event instead of a timer event.


AddHandler Application.Idle, AddressOf OnIdle

'..

Private Sub OnIdle( _
ByVal sender As Object, _
ByVal e As System.EventArgs)

End Sub
 
Back
Top