Código
#define button1 1 LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) /* handle the messages */ { case WM_CREATE:{ CreateWindow(TEXT("button"), TEXT("Button1"),WS_VISIBLE | WS_CHILD, HMENU) button1,NULL,NULL); break; } case WM_COMMAND:{ if(LOWORD(wParam) == button1){ PAINTSTRUCT ps; HDC hdc = BeginPaint(hwnd,&ps); TextOut(hdc,120,10,"Hola mundo ventana",20); Beep(200,200) EndPaint(hwnd,&ps); } break; } }
Me gustaria que cuando yo aprete un boton se imprimiera el "hola mundo ventana" y no entiendo porque no lo hace, se agredece de antemano a quien me aclare la duda !!!
Mod: Mensaje modificado, al publicar código usa etiquetas GeSHi