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 understood it at all.

Really I have some questions about it:

  1. Why is this attribute added?
  2. What does it mean?
  3. What happens if you remove this attribute?

Thanks in advance.

link|improve this question

2  
Possible duplicate: stackoverflow.com/questions/102437/… – Cody Gray Jan 11 '11 at 15:28
@Cody: Yes, sorry, I did't see it, but IMHO this answer is much better than the other one. – Daniel Peñalba Jan 11 '11 at 15:30
Yeah, that's fair. I didn't vote to close because those answers weren't fantastic. The most important bit of knowledge to glean from that question is this link: blogs.msdn.com/b/jfoscoding/archive/2005/04/07/406341.aspx – Cody Gray Jan 11 '11 at 15:31
feedback

2 Answers

up vote 7 down vote accepted

1.Why is this attribute added?

Because it is required by the ActiveX object model. And you can drop ActiveX controls on a WinForm (so it is there for compatibility) OR some .NET classes use native controls which require that attribute.

2.What means?

It means the thread runs in single-threaded apartment model.

3.What happens if you remove this attribute?

Have fun. Undefined behavior, sometimes sensible error messages. Can appear at random—things may work now, then break with a service pack.

link|improve this answer
1  
Biggest problem you'll run into is COM interop. And don't say you aren't doing this and don't care—Windows does a lot of it under the covers. – Cody Gray Jan 11 '11 at 15:29
At least WPF refuses to even work in MTA and throws an exception right away. Could be that WinForms does that, too. – Joey Jan 11 '11 at 15:33
1  
It's not just ActiveX controls, lots of other stuff depends on it. The clipboard, Drag + Drop, any of the shell dialogs like OpenFileDialog. Plus lots of .NET wrappers that use a COM API under the hood. That's all COM interop that you can't see but only works properly in an STA thread. Even the CLR is aware of it, Thread.Join() pumps a message loop for example when called on a UI thread. – Hans Passant Jan 11 '11 at 17:19
feedback

Because WinForms applications are not thread-safe. Just like COM, or all things that use COM, such as Windows, IIS or SQL-Server

Go on, downvote this !

link|improve this answer
Actually I downbvote because SQL Server and IIS are explicitely thread safe. – TomTom Jan 11 '11 at 15:51
What a weird answer... It's like you know things you're saying are wrong. – Cody Gray Jan 11 '11 at 16:00
@tomtom: Yes, that's what ms says, but... – Quandary Jan 11 '11 at 16:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.