Tagged Questions
5
votes
2answers
353 views
Threading issues in C# from external process
I have this simple code:
public void Run()
{
var invokerThread = new Thread(new ThreadStart(RunOnBackground));
invokerThread.Start();
}
private void RunOnBackground()
{
...
1
vote
3answers
782 views
STA, MTA and OLE nightmare
I have to include a .NET application into another .NET application as a plugin. The plugin interface requires me to inherit from a template form. The form is then attached in a MDI when the plugin is ...
1
vote
2answers
532 views
Visual C++ GUI app stuck in MTA mode
I've got a C++ gui project exhibiting some strange behavior. On my machine, the code compiles and runs just fine. However, on another machine, The code compiles but ends up running in MTA somehow. ...
0
votes
1answer
87 views
Aspcompat in ASPX Page
In my aspx pages, I call a COM component that uses STA. So I use aspcompat=true parameter, but I want to understand the logic. What does it exactly do? As far as I know, in STA, it is assumed to be ...