Click to See Complete Forum and Search --> : How to resize a list ctrl box?


April 29th, 1999, 01:45 AM
How can the list control box resize upon the resizing of the dialog box

CaoJi
May 14th, 1999, 07:41 AM
m_control_list.SetWindowPos()

**************************
* Cao Jiling *
**************************

nagi
June 10th, 1999, 05:55 AM
WINDOWPLCEMENT wn;
m_ListBox.GetWindowPlacement(&wn);
wn.rcNormalPosition.left=
wn.rcNormalPosition.right=
wn.rcNormalPosition.top=
wn.rcNormalPosition.bottom=
m_ListBox.Set WindowPlacement(&wn);

This works.
Chow,