Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Prof-UIS Tech Support » Autohide dialogs getting overdrawn Collapse All
Subject Author Date
Brett Cook Oct 26, 2006 - 8:13 PM

Tech Support,

I have a rendering application that is updating the main CView on a fast timer. When my dialogs come out of autohide, my CView is painting over them so that they are not visible. Is there a way to get the autohide dialogs to show up without resizing the CView?

Thanks
Brett

Technical Support Oct 27, 2006 - 9:36 AM

We can guess your application is SDI. Please ensure the child view window is created with the WS_CLIPSIBLINGS window style. You can add this style in the
CChildView::PreCreateWindow() method. This style is essential for the auto hide feature.

Brett Cook Oct 27, 2006 - 11:21 AM

Once again, you guys are good! Thanks much =).