Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how do i make edit boxes appear during run-time?

Status
Not open for further replies.

Pyropat

Programmer
May 21, 2001
9
0
0
US
I am making an MFC dialog-based program. I need to have edit boxes made while my program is running. How do I do this?
 
CEdit *t = new CEdit;
t->Create (ES_AUTOHSCROLL | WS_CHILD | WS_TABSTOP | WS_VISIBLE, CRect(10,10,50,50),
this, 1057);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top