Tagged Questions
38
votes
3answers
28k 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 ...
9
votes
2answers
2k 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
430 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
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
810 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 ...
1
vote
1answer
166 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 ...
0
votes
1answer
81 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
2answers
331 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
83 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
157 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 ...