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 » flicker when moving the floated toolbar Collapse All
Subject Author Date
Chris Anderson Apr 23, 2007 - 5:16 PM

There is a lot of flicker when moving the floated toolbar over the docked toolbars and menubar. Is this a known issue? If yes, when is it likely to be addressed?

Chris Anderson Apr 24, 2007 - 2:09 PM

Doesnt really help. Still see a lot of flicker.

Technical Support Apr 25, 2007 - 10:43 AM

Would you make a screenshot, highlight the area that is flickering and send it to us? It would allow us to help you more efficiently. Please note if you are using dialogs or form views, you can avoid flickering by turning on the Clip Children style for the dialog template in the resource editor.


Technical Support Apr 24, 2007 - 11:59 AM

You can decrease the flickering of the main window by changing CMainFrame::PreCreateWindow() method in the following way:

BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
            if( ! CExtNCW < CFrameWnd > :: PreCreateWindow( cs ) )
                        return FALSE;
            cs.lpszClass = AfxRegisterWndClass(0);
            return TRUE;
}