When I\'m creating a simple Windows form, is it starting in a new thread automatically? Or there is only one thread for all forms?
No, It's only a message queue. forms (windows) looks like they are "multithreading" but this is message queue / message pump that processes messages. (so it's 1 thread...)