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 ...
7
votes
2answers
405 views

Why WinForms applications are STAThread by default?

When you create an empty WinForms application with Visual Studio, the template has the STATread attribute in the main application class. I have been reading some docs about it, but I'm not sure if I ...
4
votes
5answers
3k views

.NET Windows Service needs to use STAThread

I have created a Windows Service that will be calling out to some COM components, so I tagged [STAThread] to the Main function. However, when the timer fires, it reports MTA and the COM calls fail. ...
0
votes
1answer
161 views

The calling thread must be STA, because many UI components require this

I know, there are a lot of similar questions on SO. But I have pretty strange situation: I get this exception while it is executed inside Dispatcher.CurrentDispatcher.Invoke. I have no idea how to fix ...
0
votes
1answer
154 views

how do I delay instantiation of the main form until responded to an event in a WinForms app?

Some background: I get the following exception in my code below. ThreadStateException : ActiveX control '8856f961-340a-11d0-a96b-00c04fd705a2' cannot be instantiated because the current thread is ...