Hi,
I would like to know how to create a win32 application with some textboxs and buttons in the main Application window.
I think it is something to do with WM_PAINT.
case WM_PAINT: hdc = BeginPaint(hWnd, &ps); // TODO: Add any drawing code here... //How to add a textbox in the main //application window with a button. EndPaint(hWnd, &ps); break;
Thank you
From
James Burton