Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
Are you looking for an edit box? A "static" control, as its name implies, desn't let you type into it. – Gabe Jan 5 '12 at 21:40

1 Answer

up vote 4 down vote accepted

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 STATIC window class is for labels. What you want is an EDIT control.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.