Multiple consoles for a single application C++

Viewed 30268

Is it possible to create two console windows (one being the main) and the secondary being a pop-up like a message box in Windows Forms?

I only want the secondary console window to hold IDs (that will be hard coded into the application) So the user does not have to keep returning to the main menu to check available IDs

If so how would you go about it?

Many Thanks

3 Answers

Nop

A process can be associated with only one console.

AllocConsole

Related