|
-
March 29th, 1999, 01:05 AM
#1
How to create a view minimized?
Hi,
how do you create a new view minimized (iconized)?
thanks.
-
March 29th, 1999, 01:24 AM
#2
Re: How to create a view minimized?
Use SW_SHOWMINIMIZED like this for example
.
void CDrawView::OnInitialUpdate() //to open views parent frame minimized
{
CView::OnInitialUpdate();
GetParentFrame()->ShowWindow(SW_SHOWMINIMIZED);
}
luck
-
March 28th, 2001, 02:07 AM
#3
Re: How to create a view minimized?
cs.style = WS_CHILD | WS_VISIBLE | WS_OVERLAPPEDWINDOW|WS_MINIMIZE;
Include this piece of code in the PrecreateWindow
of ur child view class.
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
|