LockWindowUpdate with CHtmlView
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
I need to prevent my control's drawing while it is loading the page. I'm doing it this way: In OnBeforeNavigate2():
LockWindowUpdate();
In OnDocumentComplete2():
UnlockWindowUpdate();
And in OnEraseBkgnd():
return true;
That works fine except the one moment: after the page was loaded - my desktop is redrawing. I don't understand why is it do this... It haven't web-style. The running ie doesn't redrawing it's page, but desktop is flickering. How can I suppress it? With the best regards, Vitaly.