The basic idea is to split the window in 2 so I can paint with 2 pictures with GDI or eventually use Direct3D to display 2 different scenes. How can i achieve this only with windows API
Asked
Active
Viewed 1,517 times
0
-
Please take a look around StackOverflow to get a feeling for how the site works and what useful questions look like; also read the FAQ please. – Kerrek SB May 06 '12 at 00:35
-
Kerrek you are not helping... the whole point of the site is to lend a hand – jondoe May 06 '12 at 00:43
2 Answers
2
Probably the easiest way to do this is create 3 windows, a parent window and two non-dialog child window's using CreateWindowEx with the WS_CHILD flag for the babiges, and just rigging the dimensions and position to make room for halfsies in the windows!
I came up with this source example quickly:

Adam Dreaver
- 341
- 1
- 7