Click here to Skip to main content
15,908,444 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: CListView; getting rid of spurious horizontal scrollbar Pin
Joe Woodbury29-Jan-07 6:33
professionalJoe Woodbury29-Jan-07 6:33 
GeneralRe: CListView; getting rid of spurious horizontal scrollbar Pin
Mark Salsbery29-Jan-07 6:58
Mark Salsbery29-Jan-07 6:58 
GeneralRe: CListView; getting rid of spurious horizontal scrollbar Pin
Joe Woodbury29-Jan-07 7:04
professionalJoe Woodbury29-Jan-07 7:04 
GeneralRe: CListView; getting rid of spurious horizontal scrollbar Pin
Mark Salsbery29-Jan-07 7:50
Mark Salsbery29-Jan-07 7:50 
GeneralRe: CListView; getting rid of spurious horizontal scrollbar Pin
Joe Woodbury29-Jan-07 8:13
professionalJoe Woodbury29-Jan-07 8:13 
GeneralRe: CListView; getting rid of spurious horizontal scrollbar Pin
Mark Salsbery29-Jan-07 8:34
Mark Salsbery29-Jan-07 8:34 
QuestionNeed to send info??? Pin
Larsson26-Jan-07 12:26
Larsson26-Jan-07 12:26 
AnswerRe: Need to send info??? Pin
Ravi Bhavnani26-Jan-07 13:04
professionalRavi Bhavnani26-Jan-07 13:04 
A call to Sleep() isn't required, unless you want to convey the illusion of "progress". Try this:

for (int i=0; (i < 10); i++) {
  Sleep (1000);
  int nIndex = m_listCtrl.InsertItem (i, "Hello");
  m_listCtrl.EnsureVisible (nIndex, TRUE);
  m_listCtrl.UpdateWindow();
}
/ravi

This is your brain on Celcius
Home | Music | Articles | Freeware | Trips
ravib(at)ravib(dot)com

GeneralRe: Need to send info??? Pin
Larsson26-Jan-07 13:17
Larsson26-Jan-07 13:17 
GeneralRe: Need to send info??? Pin
Ravi Bhavnani26-Jan-07 13:24
professionalRavi Bhavnani26-Jan-07 13:24 
GeneralRe: Need to send info??? Pin
Larsson26-Jan-07 13:18
Larsson26-Jan-07 13:18 
GeneralRe: Need to send info??? Pin
Ravi Bhavnani26-Jan-07 13:28
professionalRavi Bhavnani26-Jan-07 13:28 
Questionwin32 api Pin
asp.netProgrammer26-Jan-07 10:01
asp.netProgrammer26-Jan-07 10:01 
AnswerRe: win32 api Pin
Chris Losinger26-Jan-07 10:11
professionalChris Losinger26-Jan-07 10:11 
AnswerRe: win32 api Pin
Hamid_RT27-Jan-07 2:08
Hamid_RT27-Jan-07 2:08 
QuestionStreaming ZIP data and linker problem Pin
jhinze26-Jan-07 9:45
jhinze26-Jan-07 9:45 
AnswerRe: Streaming ZIP data and linker problem Pin
Mark Salsbery26-Jan-07 11:21
Mark Salsbery26-Jan-07 11:21 
Questiongmon.out File Pin
compmaniac26-Jan-07 8:50
compmaniac26-Jan-07 8:50 
QuestionRe: gmon.out File Pin
David Crow26-Jan-07 9:15
David Crow26-Jan-07 9:15 
AnswerRe: gmon.out File Pin
compmaniac26-Jan-07 9:20
compmaniac26-Jan-07 9:20 
QuestionTcp/Ip send() does sometimes not succeed Pin
Dee Veloper26-Jan-07 5:48
Dee Veloper26-Jan-07 5:48 
AnswerRe: Tcp/Ip send() does sometimes not succeed Pin
Mark Salsbery26-Jan-07 6:05
Mark Salsbery26-Jan-07 6:05 
GeneralRe: Tcp/Ip send() does sometimes not succeed Pin
Dee Veloper26-Jan-07 6:13
Dee Veloper26-Jan-07 6:13 
GeneralRe: Tcp/Ip send() does sometimes not succeed Pin
Mark Salsbery26-Jan-07 6:25
Mark Salsbery26-Jan-07 6:25 
GeneralRe: Tcp/Ip send() does sometimes not succeed Pin
Dee Veloper26-Jan-07 6:39
Dee Veloper26-Jan-07 6: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.