How can I create some new Threads and run this threads in a new console windows 开发者_如何学Go??
You get one console window per Win32 process, so to get a true "console" you will have to spawn separate processes for each of these subtasks.
Or, you can write your own GUI which acts like a console but isn't actually a "Win32 Console". If the console is output-only, then a readonly text-box with fixed-width font works pretty well.
精彩评论