Lid |
|
Hallo,
Ik heb een probleem met C++:
Hier heb ik twee buttons:
hwndButton = CreateWindow ("button", "Button1", WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON, 00, 00, cx, cy, hwnd, (HMENU) 1, ((LPCREATESTRUCT) lParam)->hInstance, NULL);
CreateWindow ("button", "Button2", WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON, 00, 00, cx, cy, hwnd, (HMENU) 1, ((LPCREATESTRUCT) lParam)->hInstance, NULL);;
return 0;
hwndButton = CreateWindow ("button", "Button1", WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON, 00, 00, cx, cy, hwnd, (HMENU) 1, ((LPCREATESTRUCT) lParam)->hInstance, NULL); CreateWindow ("button", "Button2", WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON, 00, 00, cx, cy, hwnd, (HMENU) 1, ((LPCREATESTRUCT) lParam)->hInstance, NULL);; return 0;
Als je op Button1 klikt sluit het programma wel af, en als je op Button2 klikt, gebeurt er niks. Weet iemand hoe ik ervoor kan zorgen dat ook het programma afsluit als je op Button2 drukt?
|