Click here to Skip to main content
15,894,460 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Display Pictures Problem -- Again ;) Pin
Mark Salsbery2-May-08 5:39
Mark Salsbery2-May-08 5:39 
GeneralRe: Display Pictures Problem -- Again ;) Pin
bobber2052-May-08 12:23
bobber2052-May-08 12:23 
AnswerRe: Display Pictures Problem -- Again ;) Pin
Hamid_RT2-May-08 5:05
Hamid_RT2-May-08 5:05 
GeneralRe: Display Pictures Problem -- Again ;) Pin
bobber2052-May-08 12:25
bobber2052-May-08 12:25 
GeneralRe: Display Pictures Problem -- Again ;) Pin
bobber2052-May-08 14:17
bobber2052-May-08 14:17 
GeneralRe: Display Pictures Problem -- Again ;) Pin
Rajkumar R2-May-08 20:16
Rajkumar R2-May-08 20:16 
GeneralRe: Display Pictures Problem -- Again ;) Pin
bobber2052-May-08 20:48
bobber2052-May-08 20:48 
GeneralRe: Display Pictures Problem -- Again ;) Pin
Mark Salsbery3-May-08 7:34
Mark Salsbery3-May-08 7:34 
There's not really a "picture control" - it's just a static control
with the SS_BITMAP style. If you're ok with the way the static control
draws its bitmap then you should just be using the static control that way
instead of doing the drawing yourself.

If you need to draw yourself, then you should be doing so in the control's
WM_PAINT handler. The symptoms seem to indicate you're drawing a bitmap
"underneath" (in the z-order) another control - that means you've got the
wrong HWND Smile | :)

Also make sure you handle WM_PAINT properly (for any window). If the invalid
region of the window being painted isn't marked valid after painting, then you get
recurring calls to WM_PAINT - bad for performance! Use BeginPaint() and EndPaint()
in your WM_PAINT handlers (and the DC it provides) and the invalid region updating
will be taken care of by the system.

Mark

Mark Salsbery
Microsoft MVP - Visual C++

Java | [Coffee]

GeneralRe: Display Pictures Problem -- Again ;) [modified] Pin
bobber2053-May-08 7:44
bobber2053-May-08 7:44 
GeneralRe: Display Pictures Problem -- Again ;) [modified] Pin
Mark Salsbery3-May-08 8:15
Mark Salsbery3-May-08 8:15 
QuestionFind function in CTreeCtrl Pin
Anu_Bala1-May-08 18:45
Anu_Bala1-May-08 18:45 
QuestionRe: Find function in CTreeCtrl Pin
Rajesh R Subramanian1-May-08 18:51
professionalRajesh R Subramanian1-May-08 18:51 
AnswerRe: Find function in CTreeCtrl Pin
Anu_Bala1-May-08 19:00
Anu_Bala1-May-08 19:00 
QuestionRe: Find function in CTreeCtrl Pin
Rajesh R Subramanian1-May-08 19:10
professionalRajesh R Subramanian1-May-08 19:10 
AnswerRe: Find function in CTreeCtrl Pin
Anu_Bala1-May-08 19:41
Anu_Bala1-May-08 19:41 
AnswerRe: Find function in CTreeCtrl Pin
Rajesh R Subramanian1-May-08 20:19
professionalRajesh R Subramanian1-May-08 20:19 
QuestionWhy do i can not delete Registry Keys ? Pin
gabbana1-May-08 13:39
gabbana1-May-08 13:39 
AnswerRe: Why do i can not delete Registry Keys ? Pin
Randor 1-May-08 14:17
professional Randor 1-May-08 14:17 
GeneralRe: Why do i can not delete Registry Keys ? Pin
gabbana1-May-08 15:19
gabbana1-May-08 15:19 
AnswerRe: Why do i can not delete Registry Keys ? Pin
David Crow2-May-08 5:05
David Crow2-May-08 5:05 
AnswerRe: Why do i can not delete Registry Keys ? Pin
Hamid_RT2-May-08 5:06
Hamid_RT2-May-08 5:06 
QuestionAfter alt-tab, my program thinks that the alt key is still down Pin
Anthony Appleyard1-May-08 12:13
Anthony Appleyard1-May-08 12:13 
AnswerRe: After alt-tab, my program thinks that the alt key is still down Pin
Randor 1-May-08 13:02
professional Randor 1-May-08 13:02 
GeneralRe: After alt-tab, my program thinks that the alt key is still down Pin
Anthony Appleyard2-May-08 10:51
Anthony Appleyard2-May-08 10:51 
QuestionThreads in Windows service Pin
RoyceF1-May-08 11:39
RoyceF1-May-08 11:39 

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.