I have 3 buttons on my window and 1 checkbox. I get no errors
when my program compiles/links but when it runs the checkbox is
no where to be found.

Here's my code:
Code:
//in my message handler

case WM_CREATE:

CreateWindowEx(0,"Button","End Turn",WS_CHILD | WS_VISIBLE 
| BS_DEFPUSHBUTTON,245,50,60,30,hwnd,
NULL,hInstMain,NULL);

CreateWindowEx(0,"CheckBox","CheckBox",WS_CHILD | 
WS_VISIBLE | BS_CHECKBOX,245,90,60,30,hwnd,
NULL,hInstMain,NULL);
Any ideas of what I'm doing wrong? The MSDN library wasn't too helpful. Thanks in advance for any advice.