Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
8
votes
2answers
1k views

How to run unit tests in STAThread mode?

I would like to test an app that uses the Clipboard (WindowsForms) and I need the Clipboard in my Unittests also. In order to use it, it should run in STA mode, but since the NUnit Testfixture does ...
7
votes
2answers
407 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 ...
5
votes
2answers
2k views

How can I make a background worker thread set to Single Thread Apartment?

I am creating an automated test running application. In this part of the application, I am working on a polling server. It works by constantly polling the web server to determine when a new ...
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. ...
4
votes
2answers
3k views

Why does WPF require a STAThread attribute to be applied to the Main method?

I am new to WPF, and in every tutorial I read, they either have a [System.STAThread] attribute applied to their Main method, or they tell the reader to do that. Is this attribute really "required"? ...
4
votes
1answer
3k views

WPF with Windows Forms - STAThread

I am a newbie to WPF and have a couple of questions about WPF and Windows Forms integration. I have an existing Visual C# Windows Forms application. I would like to integrate it with a WPF window, ...
2
votes
1answer
744 views

Process.Start is blocking

I'm calling Process.Start, but it blocks the current thread. pInfo = new ProcessStartInfo("C:\\Windows\\notepad.exe"); // Start process mProcess = new Process(); mProcess.StartInfo = pInfo; if ...
2
votes
1answer
283 views

STATHREAD as async workflow in F#

Consider the following code fragment: let t1 = async { return process1() } let t2 = async { return process2() } let t3 = async { return windowsProcess() } let execute = [ t1; t2; t3 ] |> ...
1
vote
0answers
24 views

Parallel programming with STA Thread or TaskScheduler.FromCurrentSynchronizationContext()

I'm writing a code which produces the XPS file using WPF controls. Let's say 100 page document. As we know that since its using the WPF UI Elements it must be STA thread. Form the front end I have a ...
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
1answer
69 views

C# WebBrowser Error Thread

I am having trouble getting a web browser in my form to work. When I run, I get this error ActiveX control '8856f961-340a-11d0-a96b-00c04fd705a2' cannot be instantiated because the current thread is ...
0
votes
1answer
163 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
2answers
279 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 ...
0
votes
2answers
80 views

Trying to understand a logreader

I am trying to understand some code. It is a small program that prints out log data. It is done by creating a form with a DataGridView that is filled by a DataTable. The form class also has a refresh ...
0
votes
1answer
232 views

Out of the blue STA thread exception in WPF application

I'm getting the exception 'The calling thread must be STA, because many UI components require this.' Which is stupid because the constructor that is giving the exception IS BEING CALLED FROM WITHIN A ...
0
votes
1answer
91 views

STA not recognized in Slim (FitNesse)

I wrote a custom table class for Slim that lets users write commands that are used to run automated tests. All commands are now working, except for one that relies on a certain call that has to be ...
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 ...
0
votes
3answers
527 views

IoC and User Interfaces

I'm trying to wrap my head around the best way to use IoC within my application for dependency injection, however I have a little issue. I am using a loose implementation of the MVP pattern with a ...