开发者

Create Thread in a new window c++

开发者 https://www.devze.com 2023-02-23 06:44 出处:网络
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 separ

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消