I create like this
htextbox=CreateWindow(L"static",L"",WS_BORDER|ES_MULTILINE|WS_CHILD|WS_VISIBLE,50,0,
100,50,hWnd,(HMENU)ID_STATIC,hInst,NULL);
But I can't write text there. What is wrong?
|
I create like this
But I can't write text there. What is wrong? |
|||
|
You say that you want a text box which makes me think you want the user to be able to edit the text. In which case you have the wrong window class. The |
|||
|
|
editbox? A "static" control, as its name implies, desn't let you type into it. – Gabe Jan 5 '12 at 21:40