Tagged Questions

10
votes
2answers
695 views

What are the limitations of a STA thread in compare to MTA threads?

If we make a thread STA like this: Thread.SetApartmentState(STA); then it cannot run code marked with [MTAThread] attribute. We have seen [STAThread] in windows and console applications but I have ...
5
votes
2answers
353 views

Threading issues in C# from external process

I have this simple code: public void Run() { var invokerThread = new Thread(new ThreadStart(RunOnBackground)); invokerThread.Start(); } private void RunOnBackground() { ...
1
vote
1answer
455 views

Winforms: One COM object needs an STAThread, the other needs an MTAThread. How can I use them?

I'm trying to build a Winforms application with two COM components. However, one of the components only works when using [MTAThread] and the other only works with [STAThread]. What would the ...
0
votes
3answers
756 views

Is possible having two COM STA instances of the same component?

I had a problem discovered on another thread here, I need to access a COM component that is STA. I'll run it on a dual-core computer, a process using this component only reaches 50% of CPU. ...