How to make multiple windows using Win32 API
Posted
by Steven Lu
on Stack Overflow
See other posts from Stack Overflow
or by Steven Lu
Published on 2010-05-22T01:46:58Z
Indexed on
2010/05/22
1:50 UTC
Read the original article
Hit count: 207
I see plenty of tutorials and articles showing me how to make a simple windows program, which is great but none of them show me how to make multiple windows.
Right now I have working code that creates and draws a layered window and I can blit stuff using GDI to draw anything I want on it, drag it around, even make it transparent, etc.
But I wanted a second rectangular area that I can draw to, drag around, etc. In other words, a second window. Probably want it to be a child window. Question is, how do I make it?
Also, if anybody knows any good resources (online preferably) like articles or tutorials for window management in the Windows API, please share.
© Stack Overflow or respective owner