Tagged Questions
36
votes
3answers
26k views
STAThread and multithreading
From the MSDN article on STAThread:
Indicates that the COM threading model for an application is single-threaded apartment (STA).
(For reference, that's the entire article.)
Single-threaded ...
1
vote
1answer
149 views
How can I listen to this event on a different thread?
I've made a little test program to try and get a USB card reader working using an ActiveX control provided by the manufacturer.
The form works fine as long as it doesn't use a separate thread. I ...
1
vote
1answer
437 views
Workflow 4.0 in a single threaded apartment?
I'm looking hard at WF 4.0 right now, but I'm having a hard time figuring out how to run workflows in STA threads. I've got a requirement for constructing XPS documents in a workflow, which means I ...
0
votes
2answers
276 views
C# Timer for STAThread COM calls in a Console App
I have a console application that needs to fire a method that uses COM. The program starts with [STAThread]. The program executes correctly when not using a timer process, but apparently suffers from ...