Click here to Skip to main content
15,903,385 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Proxy server for yahoo messenger. Pin
ThatsAlok17-Jan-07 0:20
ThatsAlok17-Jan-07 0:20 
QuestionCRecordSet - odd behaviour with image data fields Pin
neilsolent16-Jan-07 23:58
neilsolent16-Jan-07 23:58 
QuestionRe: CRecordSet - odd behaviour with image data fields Pin
David Crow17-Jan-07 3:56
David Crow17-Jan-07 3:56 
AnswerRe: CRecordSet - odd behaviour with image data fields Pin
neilsolent17-Jan-07 5:34
neilsolent17-Jan-07 5:34 
AnswerRe: CRecordSet - odd behaviour with image data fields Pin
neilsolent17-Jan-07 8:30
neilsolent17-Jan-07 8:30 
QuestionCListView selection question Pin
PatrykDabrowski16-Jan-07 23:18
PatrykDabrowski16-Jan-07 23:18 
QuestionDirectX 7 in normal mode Pin
svatich16-Jan-07 23:00
svatich16-Jan-07 23:00 
AnswerRe: DirectX 7 in normal mode Pin
Mark Salsbery17-Jan-07 5:33
Mark Salsbery17-Jan-07 5:33 
It sounds like an implementation issue, not a speed issue.

Flicker is from unnecessarily drawing background where it's going to be covered with foreground,
if that makes sense.

The "classic invalidation of rectangle to repaint stuff" isn't going to work. Leave that for
one-shot redraws like when the user moves a window across your window (ie WM_PAINT messages).

You can draw with GDI anytime you want (if drawing from different threads then make sure to sync
access to GDI). Waiting for WM_PAINT messages will result in bad performance.

Only draw backgrounds when you need to, and if possible only draw the portion(s) that will be
visible.

Just my 2 cents Smile | :)
Mark

Questiondialog init / spin-ctrl msg handling Pin
cpp_prgmer16-Jan-07 22:45
cpp_prgmer16-Jan-07 22:45 
GeneralOT : Thank you [modified] Pin
toxcct16-Jan-07 22:50
toxcct16-Jan-07 22:50 
GeneralRe: OT : Edit your article and add a title ! Pin
Rajesh R Subramanian16-Jan-07 23:23
professionalRajesh R Subramanian16-Jan-07 23:23 
Generalfixed Pin
toxcct16-Jan-07 23:26
toxcct16-Jan-07 23:26 
GeneralRe: fixed Pin
Rajesh R Subramanian16-Jan-07 23:31
professionalRajesh R Subramanian16-Jan-07 23:31 
JokeRe: fixed Pin
toxcct16-Jan-07 23:33
toxcct16-Jan-07 23:33 
AnswerRe: dialog init / spin-ctrl msg handling Pin
cpp_prgmer17-Jan-07 1:21
cpp_prgmer17-Jan-07 1:21 
GeneralRe: dialog init / spin-ctrl msg handling Pin
toxcct17-Jan-07 2:26
toxcct17-Jan-07 2:26 
AnswerRe: dialog init / spin-ctrl msg handling Pin
David Crow17-Jan-07 3:59
David Crow17-Jan-07 3:59 
GeneralRe: dialog init / spin-ctrl msg handling Pin
cpp_prgmer17-Jan-07 4:28
cpp_prgmer17-Jan-07 4:28 
AnswerRe: dialog init / spin-ctrl msg handling Pin
AshishMahajan15-Jan-09 22:49
AshishMahajan15-Jan-09 22:49 
QuestionLNK2001:unresolved external symbol __afxForceEXCLUDE Pin
shivapriyak16-Jan-07 22:27
shivapriyak16-Jan-07 22:27 
AnswerRe: LNK2001:unresolved external symbol __afxForceEXCLUDE Pin
toxcct16-Jan-07 22:46
toxcct16-Jan-07 22:46 
GeneralRe: LNK2001:unresolved external symbol __afxForceEXCLUDE Pin
shivapriyak16-Jan-07 23:53
shivapriyak16-Jan-07 23:53 
GeneralRe: LNK2001:unresolved external symbol __afxForceEXCLUDE Pin
toxcct16-Jan-07 23:59
toxcct16-Jan-07 23:59 
GeneralRe: LNK2001:unresolved external symbol __afxForceEXCLUDE Pin
shivapriyak17-Jan-07 0:39
shivapriyak17-Jan-07 0:39 
GeneralRe: LNK2001:unresolved external symbol __afxForceEXCLUDE Pin
toxcct17-Jan-07 0:41
toxcct17-Jan-07 0:41 

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.