in this code:

VB Code:
  1. 'make delegate with same signature
  2. Public Delegate Sub DoOperationHandler(param1 as integer,param2 as integer)
  3.  
  4. 'with params
  5. Private Sub DoOperation(param1 as integer,param2 as integer)
  6.     Result=param1+param2
  7.     'Do your stuff...
  8. End Sub
  9.  
  10. 'you don't need this sub to fire the threaded method
  11. Private Sub eheheheh()
  12.     Dim x As New DoOperationHandler(AddressOf DoOperation)
  13.     x.BeginInvoke(1,4,Nothing,Nothing)
  14. End Sub

this launch a real thread?? how can a I interrupt, resume, abort and etc???

Thnak you,
Guilherme Costa