Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > Visual C++ MFC > Docking Pane
  New Posts New Posts RSS Feed - a problem about Docking pane
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

a problem about Docking pane

 Post Reply Post Reply
Author
Message
deepstar View Drop Down
Newbie
Newbie
Avatar

Joined: 28 March 2008
Location: China
Status: Offline
Points: 7
Post Options Post Options   Thanks (0) Thanks(0)   Quote deepstar Quote  Post ReplyReply Direct Link To This Post Topic: a problem about Docking pane
    Posted: 25 April 2008 at 11:12am
I have implemented one MDI application.and placing a cell.ocx in the CFormView
when two or more panes turn and turn about be fully shown from the auto-hide position.
the problem is following picture:
thanks,deepstar
Back to Top
Oleg View Drop Down
Admin Group
Admin Group


Joined: 21 May 2003
Location: United States
Status: Offline
Points: 11234
Post Options Post Options   Thanks (0) Thanks(0)   Quote Oleg Quote  Post ReplyReply Direct Link To This Post Posted: 25 April 2008 at 2:16pm

Hello,

Add Clip Styles for your frame and view.
 
BOOL Cxx::PreCreateWindow(CREATESTRUCT& cs)
{
 // TODO: Modify the Window class or styles here by modifying
 //  the CREATESTRUCT cs
 if( !Cxxx::PreCreateWindow(cs) )
  return FALSE;
 cs.style |= WS_CLIPCHILDREN|WS_CLIPSIBLINGS;
 return TRUE;
}
 
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS
Back to Top
deepstar View Drop Down
Newbie
Newbie
Avatar

Joined: 28 March 2008
Location: China
Status: Offline
Points: 7
Post Options Post Options   Thanks (0) Thanks(0)   Quote deepstar Quote  Post ReplyReply Direct Link To This Post Posted: 25 April 2008 at 10:54pm
Hi oleg ,

the problem is solved
 
thanks..
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.141 seconds.