Click here to Skip to main content
15,891,864 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to display series of numbers ? Pin
Ravi Bhavnani7-Apr-06 15:36
professionalRavi Bhavnani7-Apr-06 15:36 
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 
//Now test this code then again test without SetBkMode
CPaintDC dc(this);
CString Str;
int i=0;

dc.FillRect(CRect(0,50,800,80),&CBrush(RGB(120,120,200)));
while(i<50)
{
Str.Format("''0%d''",i);
dc.SetBkMode(0);
dc.SetTextColor(RGB(255,255,255));//White
dc.TextOut(X,55,Str,Str.GetLength());

X+=40;
i++;
}
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 
GeneralRe: Registering File Extensions Pin
Bob X7-Apr-06 8:19
Bob X7-Apr-06 8:19 
GeneralRe: Registering File Extensions Pin
sasikumarselvarajan7-Apr-06 22:39
sasikumarselvarajan7-Apr-06 22:39 
AnswerRe: Registering File Extensions Pin
David Crow7-Apr-06 9:14
David Crow7-Apr-06 9:14 
QuestionFile Load/Save Windows Pin
Bob X7-Apr-06 7:20
Bob X7-Apr-06 7:20 
AnswerRe: File Load/Save Windows Pin
Waldermort7-Apr-06 7:31
Waldermort7-Apr-06 7:31 
GeneralRe: File Load/Save Windows Pin
Bob X7-Apr-06 7:50
Bob X7-Apr-06 7:50 
GeneralRe: File Load/Save Windows Pin
David Crow7-Apr-06 8:24
David Crow7-Apr-06 8:24 

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.