C++ Multiple Windowed Application

Started by
2 comments, last by theZapper 15 years, 4 months ago
Hi, I'm creating a windowed program that I want to have an additional window to pop up. Does anyone know how to do this? Does it have anything to do with dialogs?
Advertisement
C++ doesn't provide an UI library. Which OS/framework are you using?
MFC
One way would be dialog boxes, or you could use a plain old window.

Win32 Dialog Info:
http://msdn.microsoft.com/en-us/library/ms632588(VS.85).aspx

MFC Dialog Info:
http://msdn.microsoft.com/en-us/library/s97b2305.aspx

The thing with a dialog box is you can design it in the VS resource editor by dragging buttons and controls into the position you want, which you can't do for a standard window.
---When I'm in command, every mission's a suicide mission!

This topic is closed to new replies.

Advertisement