BeginInvoke

  • Thread starter Thread starter dusanv
  • Start date Start date
D

dusanv

Hi,

I'm trying to call 'BeginInvoke' on a member function of the Form Class
(Close function). What delegate do I use for that?

Thanks.
 
(e-mail address removed) a écrit :
Hi,

I'm trying to call 'BeginInvoke' on a member function of the Form Class
(Close function). What delegate do I use for that?

Any type of delegate would work just fine. If your delegate signature
takes parameters, use the 2nd parameter to BeginInvoke ( param
Object[] args) to pass them.

Arnaud
MVP - VC
 
Back
Top