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.
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.
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.