|
-
April 29th, 1999, 01:45 AM
#1
How to resize a list ctrl box?
How can the list control box resize upon the resizing of the dialog box
-
May 14th, 1999, 07:41 AM
#2
Re: How to resize a list ctrl box?
m_control_list.SetWindowPos()
**************************
* Cao Jiling *
**************************
-
June 10th, 1999, 05:55 AM
#3
Re: How to resize a list ctrl box?
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,
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|