Click here to Skip to main content
15,888,234 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Own window in dialog Pin
David Crow5-Jun-06 3:19
David Crow5-Jun-06 3:19 
GeneralRe: Own window in dialog Pin
Manjunath S5-Jun-06 4:57
Manjunath S5-Jun-06 4:57 
GeneralRe: Own window in dialog Pin
David Crow5-Jun-06 5:12
David Crow5-Jun-06 5:12 
QuestionADO - UPDATE -newbie Pin
antonaras5-Jun-06 1:08
antonaras5-Jun-06 1:08 
AnswerRe: ADO - UPDATE -newbie [modified] Pin
Eytukan5-Jun-06 1:20
Eytukan5-Jun-06 1:20 
QuestionRe: ADO - UPDATE -newbie Pin
David Crow5-Jun-06 3:33
David Crow5-Jun-06 3:33 
QuestionDouble Buffering? Pin
Sarath C5-Jun-06 1:05
Sarath C5-Jun-06 1:05 
AnswerRe: Double Buffering? Pin
Nishad S5-Jun-06 1:37
Nishad S5-Jun-06 1:37 
When you are using double buffering method, the drawings are done in the memory DC, which is not seen to us. Then you BitBlt it to the screen DC. The BitBlt is a very fast operation and there is no erasing. Means the content in the memory DC is overwritten to existing screen content. So you will see a full image after the BitBlt.
But if you are drawing directly to the screen, for example, you may have to clear the screen and draw something and then draw something over it, etc. As all these operations are visible to us, we feel it as flickering. But in the case of double buffering, these are done in the memory DC, which is hidden from us, and the final result is shown immediately, replacing the existing one.

I think you got it. Smile | :)


- NS -
GeneralRe: Double Buffering? Pin
Sarath C5-Jun-06 2:14
Sarath C5-Jun-06 2:14 
AnswerRe: Double Buffering? Pin
Divyang Mithaiwala5-Jun-06 2:34
Divyang Mithaiwala5-Jun-06 2:34 
QuestionPlease help me Pin
subramanyeswari5-Jun-06 0:45
subramanyeswari5-Jun-06 0:45 
AnswerRe: Please help me Pin
Eytukan5-Jun-06 0:55
Eytukan5-Jun-06 0:55 
GeneralRe: Please help me Pin
subramanyeswari5-Jun-06 1:15
subramanyeswari5-Jun-06 1:15 
GeneralRe: Please help me Pin
Eytukan5-Jun-06 1:17
Eytukan5-Jun-06 1:17 
GeneralRe: Please help me Pin
subramanyeswari5-Jun-06 1:24
subramanyeswari5-Jun-06 1:24 
GeneralRe: Please help me Pin
subramanyeswari5-Jun-06 1:30
subramanyeswari5-Jun-06 1:30 
GeneralRe: Please help me Pin
toxcct5-Jun-06 1:32
toxcct5-Jun-06 1:32 
AnswerRe: Please help me [modified] Pin
Sarath C5-Jun-06 1:01
Sarath C5-Jun-06 1:01 
GeneralRe: Please help me [modified] Pin
Eytukan5-Jun-06 1:16
Eytukan5-Jun-06 1:16 
GeneralRe: Please help me [modified] Pin
subramanyeswari5-Jun-06 1:18
subramanyeswari5-Jun-06 1:18 
AnswerRe: Please help me Pin
Anton Mikhalyov5-Jun-06 1:16
Anton Mikhalyov5-Jun-06 1:16 
AnswerRe: Please help me Pin
toxcct5-Jun-06 1:27
toxcct5-Jun-06 1:27 
QuestionCListCtrl - selection Pin
Luksky5-Jun-06 0:28
Luksky5-Jun-06 0:28 
AnswerRe: CListCtrl - selection Pin
Nishad S5-Jun-06 0:55
Nishad S5-Jun-06 0:55 
GeneralRe: CListCtrl - selection Pin
Luksky6-Jun-06 1:52
Luksky6-Jun-06 1:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.