0
votes
1answer
37 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
45 views
how do I delay instantiation of the main form until responded to an event in a win forms 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 not …
1
vote
1answer
98 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 ]
|> …
5
votes
2answers
3k 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 …
2
votes
1answer
1k 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, …
0
votes
3answers
219 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 …
