Click here to Skip to main content
15,893,814 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionBalanced Binary Trees Pin
TranscendentalSoftware7-Apr-06 17:39
TranscendentalSoftware7-Apr-06 17:39 
AnswerRe: Balanced Binary Trees Pin
El Corazon7-Apr-06 20:09
El Corazon7-Apr-06 20:09 
GeneralRe: Balanced Binary Trees Pin
TranscendentalSoftware7-Apr-06 20:21
TranscendentalSoftware7-Apr-06 20:21 
GeneralRe: Balanced Binary Trees Pin
Blake Miller10-Apr-06 5:15
Blake Miller10-Apr-06 5:15 
QuestionCAsyncSocket Question Pin
JBAK_CP7-Apr-06 14:30
JBAK_CP7-Apr-06 14:30 
AnswerRe: CAsyncSocket Question Pin
Mike O'Neill8-Apr-06 8:00
Mike O'Neill8-Apr-06 8:00 
QuestionHow to display series of numbers ? Pin
Surivevoli7-Apr-06 13:04
Surivevoli7-Apr-06 13:04 
AnswerRe: How to display series of numbers ? Pin
Ravi Bhavnani7-Apr-06 15:36
professionalRavi Bhavnani7-Apr-06 15:36 
To display the series on the same line, simply construct the string and use TextOut() to display it, as in:
CString strNumbers;
for (int nNum=1; (nNum <= 50); nNum++) {
  CString strNum;
  strNum.Format ("%d ", nNum);
  strNumbers += strNum;
}
VERIFY (pDC->TextOut (10, 10, strNumbers));
/ravi

My new year's resolution: 2048 x 1536
Home | Music | Articles | Freeware | Trips
ravib(at)ravib(dot)com

GeneralRe: How to display series of numbers ? Pin
Surivevoli8-Apr-06 0:29
Surivevoli8-Apr-06 0:29 
GeneralRe: How to display series of numbers ? Pin
ThatsAlok8-Apr-06 1:25
ThatsAlok8-Apr-06 1:25 
GeneralRe: How to display series of numbers ? Pin
Ravi Bhavnani8-Apr-06 4:03
professionalRavi Bhavnani8-Apr-06 4:03 
AnswerRe: How to display series of numbers ? Pin
Hamid_RT7-Apr-06 18:42
Hamid_RT7-Apr-06 18:42 
GeneralRe: How to display series of numbers ? Pin
Surivevoli8-Apr-06 0:04
Surivevoli8-Apr-06 0:04 
GeneralRe: How to display series of numbers ? Pin
Hamid_RT8-Apr-06 1:13
Hamid_RT8-Apr-06 1:13 
GeneralRe: How to display series of numbers ? Pin
Hamid_RT8-Apr-06 1:35
Hamid_RT8-Apr-06 1:35 
GeneralRe: How to display series of numbers ? Pin
Surivevoli9-Apr-06 12:47
Surivevoli9-Apr-06 12:47 
GeneralRe: How to display series of numbers ? Pin
Hamid_RT9-Apr-06 18:45
Hamid_RT9-Apr-06 18:45 
AnswerRe: How to display series of numbers ? Pin
ThatsAlok7-Apr-06 23:42
ThatsAlok7-Apr-06 23:42 
GeneralRe: How to display series of numbers ? Pin
Surivevoli8-Apr-06 0:13
Surivevoli8-Apr-06 0:13 
QuestionFlicker draw nightmare Pin
Axonn Echysttas7-Apr-06 11:24
Axonn Echysttas7-Apr-06 11:24 
AnswerRe: Flicker draw nightmare Pin
Richard Andrew x647-Apr-06 13:33
professionalRichard Andrew x647-Apr-06 13:33 
AnswerRe: Flicker draw nightmare Pin
Ravi Bhavnani7-Apr-06 15:41
professionalRavi Bhavnani7-Apr-06 15:41 
QuestionWindows Form Application Problems Pin
Bob X7-Apr-06 10:15
Bob X7-Apr-06 10:15 
QuestionRegistering File Extensions Pin
Bob X7-Apr-06 7:37
Bob X7-Apr-06 7:37 
AnswerRe: Registering File Extensions Pin
Waldermort7-Apr-06 8:06
Waldermort7-Apr-06 8:06 

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.