000
16.11.2004, 20:07 Uhr
A-l-e-x
|
Ich will ein normales Textfeld erzeugen (bzw. mit der Eigenschaft Readonly). Hab jetzt damit probiert:
C++: |
HWND TestEdt = CreateWindow("EDIT", "", WS_VISIBLE | WS_CHILD | WS_BORDER | WS_VSCROLL | ES_READONLY | ES_MULTILINE, 119, 206, 160, 57, hWnd, (HMENU)IDC_Ausgabe, (HINSTANCE)GetWindowLong(hWnd, GWL_HINSTANCE), NULL);
|
Leider ist das Atribut WS_BORDER nicht das was ich mir so vorgestellt habe. Ich kriege da eine schwarze umrandung, statt einen 3D Kasten. Kann mir jemand die richtige Atribute verraten.
mfg A-l-e-x |