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

C / C++ / MFC

 
GeneralNetwork Provider DLL Pin
Shawnerton4-Jan-01 13:33
Shawnerton4-Jan-01 13:33 
GeneralNetwork Provider DLL Pin
Shawnerton4-Jan-01 13:33
Shawnerton4-Jan-01 13:33 
GeneralNetwork Provider DLL Pin
Shawnerton4-Jan-01 13:32
Shawnerton4-Jan-01 13:32 
GeneralRetrieve messages from other processes Pin
4-Jan-01 13:15
suss4-Jan-01 13:15 
GeneralCListCtrl performance Pin
4-Jan-01 9:14
suss4-Jan-01 9:14 
GeneralRe: CListCtrl performance Pin
4-Jan-01 9:44
suss4-Jan-01 9:44 
GeneralRe: CListCtrl performance Pin
4-Jan-01 13:15
suss4-Jan-01 13:15 
GeneralRe: CListCtrl performance Pin
5-Jan-01 5:48
suss5-Jan-01 5:48 
If you don't want to go with the 'virtual list' method, you can speed up
your existing list with:-

list->SetRedraw(FALSE);

... do your list population algorithm...

list->SetRedraw(TRUE);



or you could do

list->LockWindowUpdate();
... do your list population algorithm...
list->UnlockWindowUpdate();
list->Invalidate(FALSE); // not strictly necessary, but I have seen some controls
// fail to redraw correctly after this, so this will do it, use FALSE so that it
// just redraws without an erase first

Stephen Kellett


QuestionHow to desgine a chat software for voice in VC++ ? Please Help ! Pin
4-Jan-01 8:32
suss4-Jan-01 8:32 
AnswerRe: How to desgine a chat software for voice in VC++ ? Please Help ! Pin
26-Jan-01 0:34
suss26-Jan-01 0:34 
GeneralRe: How to desgine a chat software for voice in VC++ ? Please Help ! Pin
wildchaser29-May-01 19:12
wildchaser29-May-01 19:12 
GeneralRe: How to desgine a chat software for voice in VC++ ? Please Help ! Pin
Christian Graus29-May-01 19:21
protectorChristian Graus29-May-01 19:21 
QuestionHow to desgine a chat software for voice in VC++ ? Please Help ! Pin
4-Jan-01 8:30
suss4-Jan-01 8:30 
GeneralConsole text color Pin
4-Jan-01 6:59
suss4-Jan-01 6:59 
GeneralRe: Console text color Pin
Tim Deveaux4-Jan-01 8:21
Tim Deveaux4-Jan-01 8:21 
GeneralGenerating words Pin
4-Jan-01 6:56
suss4-Jan-01 6:56 
GeneralRe: Generating words Pin
Christian Graus4-Jan-01 10:55
protectorChristian Graus4-Jan-01 10:55 
GeneralRe: Generating words Pin
Christian Graus4-Jan-01 11:00
protectorChristian Graus4-Jan-01 11:00 
QuestionHow to use IPAdress Control in VB ?? Pin
Patrick4-Jan-01 2:09
Patrick4-Jan-01 2:09 
Generalgetting info about another process Pin
subir talukder4-Jan-01 1:39
subir talukder4-Jan-01 1:39 
Generalgetting info about another process Pin
subir talukder4-Jan-01 1:37
subir talukder4-Jan-01 1:37 
Generalgetting info about another process Pin
subir talukder4-Jan-01 1:37
subir talukder4-Jan-01 1:37 
GeneralMake Controls Invisible Pin
3-Jan-01 14:58
suss3-Jan-01 14:58 
GeneralRe: Make Controls Invisible Pin
Michael Dunn3-Jan-01 15:18
sitebuilderMichael Dunn3-Jan-01 15:18 
GeneralRe: Make Controls Invisible Pin
Masoud Samimi4-Jan-01 6:25
Masoud Samimi4-Jan-01 6:25 

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.