up vote 1 down vote favorite
share [g+] share [fb]

Disposing a control from by calling its own BeginInvoke() is a good idea or bad idea? Or shall I use the parent control or something like that to accomplish this task?

I'm using Invoke because I'm accessing the control form another thread.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

I cannot see why it should be a bad idea. Invoke or BeginInvoke does not do any special tricks other than calling the method on the right thread.

link|improve this answer
So it doesn't matter which control I use to call Invoke it will just switch to that context and run it. Is that right? – dr. evil Sep 1 '09 at 12:50
In general I think it is a good idea to call Invoke on the control on which you want to invoke the delegate passed to the Invoke statement, but for practical reasons I don't think it matters, as long as the control that you call Invoke on is owned by the same thread as the target control. – Fredrik Mörk Sep 1 '09 at 12:53
Great answer thanks, although you said "I think", I'll take it as you are sure :) – dr. evil Sep 1 '09 at 12:59
@dr. evil: you take is as you want, I think only means that it's your insurance kicking in if something goes wrong, not mine ;o) – Fredrik Mörk Sep 1 '09 at 13:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.