How to lay some Text Edit Controls in a Scroll View
-
I wanna lay some Edit Controls in a View which can be scrolled by a Vertical Scroll Bar to handle inputted data.Who can do that please help me!
I wanna enter Microsoft Corporation for my fortune
-
I wanna lay some Edit Controls in a View which can be scrolled by a Vertical Scroll Bar to handle inputted data.Who can do that please help me!
I wanna enter Microsoft Corporation for my fortune
Hey, When ever you create your edit box create using ES_MULTILINE as the edit box's one of the style. for eg. CEdit* pEdit = new CEdit; pEdit->Create(ES_MULTILINE | WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_BORDER,CRect(10, 10, 100, 100), this, 1); this will make a edit box vertical scroll enable
Regards, Pankaj Sachdeva There is no future lies in any job but future lies in the person who holds the job