I am using a 3rd party OCX (ActiveX) control in my C#/.Net 2.0 application to control an external device. Unfortunately this OCX seems to be a bit ill-behaved. After instantiating the control and telling it to execute a method to control said device, the OCX goes into a Blocking state. This locks up my application because the OCX is instantiated on the primary thread of my application. So even commands like:
Application.DoEvents();
won't do a thing for my application. I've even tried calling the OCX's Methods on a separate thread, but realized that this won't do anything for me as the OCX itself still exists on the primary thread.
EDIT: I guess what I need to know is the following:
1) By their nature, are OCXs required to run in the primary thread? Or can I run an OCX in a separate thread so that it's not blocking the primary thread from handling form events?
2) If the latter, how do I do this? (My experience so far is that this is not possible, but I haven't tried every idea that I can think of...)
EDIT:
I ended up sticking all the actions in a separate Thread as I discovered disposing the object did not mean that the device needed re-initializing if a created a new control object.
It's not an ideal answer, but it works.
