Click here to Skip to main content
15,886,806 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: [solved] Declare & Use Gobal Variable in C (Just like Singleton Variable) Pin
Rick York12-May-17 7:19
mveRick York12-May-17 7:19 
QuestionCTreeCtrl with CustomDraw Flickering Pin
SamwisePl5-May-17 0:29
SamwisePl5-May-17 0:29 
AnswerRe: CTreeCtrl with CustomDraw Flickering Pin
Richard MacCutchan5-May-17 0:58
mveRichard MacCutchan5-May-17 0:58 
GeneralRe: CTreeCtrl with CustomDraw Flickering Pin
SamwisePl5-May-17 1:17
SamwisePl5-May-17 1:17 
GeneralRe: CTreeCtrl with CustomDraw Flickering Pin
Richard MacCutchan5-May-17 1:48
mveRichard MacCutchan5-May-17 1:48 
AnswerRe: CTreeCtrl with CustomDraw Flickering Pin
Victor Nijegorodov5-May-17 6:00
Victor Nijegorodov5-May-17 6:00 
GeneralRe: CTreeCtrl with CustomDraw Flickering Pin
SamwisePl7-May-17 19:46
SamwisePl7-May-17 19:46 
AnswerRe: CTreeCtrl with CustomDraw Flickering Pin
leon de boer7-May-17 3:18
leon de boer7-May-17 3:18 
There double buffering technique that is fairly trivial to implement and gives reasonable results for any complex drawing

1.) Your draw routines only draw on a memory context, don't draw to the screen at all in those item draw calls.
2.) You use a standard windows timer which will timeout after a set time and you use that to update the screen.
3.) Anytime you draw to the memory context in step 1 you kill the running any timer and restart it
4.) The timer running out posts off a message and if you use that message to transfer the memory DC to screen, you then dispose of the timer.

You should be able to get what happens that each item simply draws itself to the memory DC and will restart the timer. When the last item has been drawn the timer will finally hit it's wait timeout and post off the message which will draw all the items together as one big bitblt draw and no flickering.

The requirements 1 memory context (created when window is created), 1 timer which is created and disposed as per above.
In vino veritas

GeneralRe: CTreeCtrl with CustomDraw Flickering Pin
SamwisePl7-May-17 19:47
SamwisePl7-May-17 19:47 
AnswerRe: CTreeCtrl with CustomDraw Flickering Pin
SamwisePl15-May-17 19:15
SamwisePl15-May-17 19:15 
GeneralRe: CTreeCtrl with CustomDraw Flickering Pin
leon de boer15-May-17 19:26
leon de boer15-May-17 19:26 
QuestionWinBioIdentify() function causing to stop service "WbioSrvc " when match found? Pin
Premnath Mali4-May-17 19:28
professionalPremnath Mali4-May-17 19:28 
Questionambiguity in multiple inheritance Pin
Member 1315992028-Apr-17 20:17
Member 1315992028-Apr-17 20:17 
AnswerRe: ambiguity in multiple inheritance Pin
Richard MacCutchan28-Apr-17 21:34
mveRichard MacCutchan28-Apr-17 21:34 
AnswerRe: ambiguity in multiple inheritance Pin
Jochen Arndt28-Apr-17 21:44
professionalJochen Arndt28-Apr-17 21:44 
QuestionEmbedding Python in C++ Pin
Member 1312483628-Apr-17 17:06
Member 1312483628-Apr-17 17:06 
QuestionVisual studio Pin
Member 1315949628-Apr-17 11:06
Member 1315949628-Apr-17 11:06 
AnswerRe: Visual studio Pin
jeron128-Apr-17 11:14
jeron128-Apr-17 11:14 
QuestionRe: Visual studio Pin
David Crow28-Apr-17 15:59
David Crow28-Apr-17 15:59 
Questionerror LNK2019: unresolved external symbol __stdio_common_vsprintf referenced in function sprint VS 2015 Pro Windows 10 Pin
ForNow28-Apr-17 9:00
ForNow28-Apr-17 9:00 
AnswerRe: error LNK2019: unresolved external symbol __stdio_common_vsprintf referenced in function sprint VS 2015 Pro Windows 10 Pin
Jochen Arndt28-Apr-17 22:12
professionalJochen Arndt28-Apr-17 22:12 
GeneralRe: error LNK2019: unresolved external symbol __stdio_common_vsprintf referenced in function sprint VS 2015 Pro Windows 10 Pin
ForNow29-Apr-17 16:49
ForNow29-Apr-17 16:49 
QuestionHelp Pin
Member 1302311827-Apr-17 5:29
Member 1302311827-Apr-17 5:29 
AnswerRe: Help Pin
Dave Kreskowiak27-Apr-17 6:04
mveDave Kreskowiak27-Apr-17 6:04 
AnswerRe: Help Pin
ThatsAlok11-May-17 20:47
ThatsAlok11-May-17 20:47 

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.