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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top