vote up 0 vote down star

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.

flag

80% accept rate
3  
This may be obvious and you have probably checked, but does the OCX expose Async methods matching the problematic methods, usually named the same way only with a Begin<method>, End<method>? – Simon Wilson Oct 30 at 19:55
At this point, nothing is obvious to me. There is definitely a BeginInvoke and EndInvoke, if that's what you mean. – Ranger Pretzel Oct 30 at 20:04
Not sure without knowing the control but trying it won't hurt. You could also consider a BackgroundWorker and have it execute the OCX's method – Simon Wilson Nov 1 at 2:32

1 Answer

vote up 1 vote down

You should check out http://www.codeproject.com/KB/cs/Late_Bound_ActiveX.aspx and then launching your wrapper in a separate thread. That might help you.

If the OCX is unstable you might want to load it in a separate AppDomain as well so you can load/unload the component at will.

Another thing, is your app STAThread (running as single threaded apartment model)? If so it might help to change it to MTAThread.

link|flag
There is nothing particularly unstable about the OCX, it's just that all method calls "block" until they are finished. MTAThread may make my app more complicated from what I've read. I'm looking over the LateBoundActiveX project, but am not seeing how it can help. In fact, I've already created a wrapper for this OCX object using the "aximp" cmd-line tool (because it was created in Borland Delphi and doesn't seem to be playing nice with VS2005.) So I'm hesitant to create a wrapper around a wrapper. – Ranger Pretzel Nov 2 at 20:37
Seems the problem is that the OCX is created on the main thread, and it will do it's work on this thread, no matter if done synchronously or asynchronously. Is there a way you can load the ocx on another thread. Eg. load the wrapper dll dynamically (Assembly.Load) and instantiate on a separate thread. – Mikael Svenson Nov 4 at 8:29

Your Answer

Get an OpenID
or

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