000
26.05.2008, 06:52 Uhr
~filth
Gast
|
Hallo,
ich möchte in meiner Anwendung 2 Fenster darstellen.
Mein Problem ist, dass ich schon ein Fenster mit:
Code: |
// Create the window hWnd = CreateWindow( appname, appname, WS_OVERLAPPEDWINDOW | WS_CLIPSIBLINGS | WS_CLIPCHILDREN, CW_USEDEFAULT, CW_USEDEFAULT, 800, 600, NULL, NULL, hInstance, NULL); if (!hWnd) return FALSE;
|
zeichne und später ein weiteres mit:
Code: |
HWND hWindow; // Fenster-Handle hWindow = CreateWindowEx(0, // kein erweiterter Stil appname, // Fensterklassen-Name appname, // Fenstertitel WS_OVERLAPPEDWINDOW, // Fensterstil CW_USEDEFAULT, 0, // Position CW_USEDEFAULT, 0, // Groesse (HWND)0, // kein Parent-Fenster (HMENU)0, // kein Menu hInstance, // Instanzen-Handle NULL); // keine zusaetzl. Daten ShowWindow(hWindow, nCmdShow);
|
erstellen will. Aber es ist nur das erste zu sehen. Was mache ich falsch? |