Click here to Skip to main content
15,899,474 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Disable Restoredown button Pin
Jijo.Raj3-Dec-08 21:25
Jijo.Raj3-Dec-08 21:25 
QuestionSpace bar problem.......... Pin
shaina22312-Dec-08 19:19
shaina22312-Dec-08 19:19 
AnswerRe: Space bar problem.......... Pin
Code-o-mat2-Dec-08 21:23
Code-o-mat2-Dec-08 21:23 
Questionmulti midea timers with windows timer Pin
22082-Dec-08 16:56
22082-Dec-08 16:56 
AnswerRe: multi midea timers with windows timer Pin
Stuart Dootson2-Dec-08 21:11
professionalStuart Dootson2-Dec-08 21:11 
Questioncovert to upper Pin
jonig192-Dec-08 16:15
jonig192-Dec-08 16:15 
AnswerRe: covert to upper Pin
Maximilien2-Dec-08 16:29
Maximilien2-Dec-08 16:29 
AnswerRe: covert to upper Pin
Manish K. Agarwal2-Dec-08 18:01
Manish K. Agarwal2-Dec-08 18:01 
void ConvertToUpper(char name[])
{
cin >> name;
int i = 0;

while(name[i] != '\0')
{
if(name[i] >= 'a' && name[i] <= 'z')
name[i] += 'A' - 'a';
i++;
}
}

Manish Agarwal
manish.k.agarwal @ gmail DOT com
GeneralRe: covert to upper Pin
jonig192-Dec-08 19:20
jonig192-Dec-08 19:20 
GeneralRe: covert to upper Pin
enhzflep2-Dec-08 19:38
enhzflep2-Dec-08 19:38 
GeneralRe: covert to upper Pin
Jijo.Raj3-Dec-08 7:12
Jijo.Raj3-Dec-08 7:12 
AnswerRe: covert to upper Pin
Stuart Dootson2-Dec-08 21:05
professionalStuart Dootson2-Dec-08 21:05 
AnswerRe: covert to upper Pin
David Crow3-Dec-08 5:01
David Crow3-Dec-08 5:01 
Questionsystem in windows ce Pin
Arif Liminto2-Dec-08 15:58
professionalArif Liminto2-Dec-08 15:58 
QuestionHow does this translate to c++ Pin
monsieur_jj2-Dec-08 15:40
monsieur_jj2-Dec-08 15:40 
AnswerRe: How does this translate to c++ Pin
Stuart Dootson2-Dec-08 21:01
professionalStuart Dootson2-Dec-08 21:01 
QuestionWhich is the best C++ ERP development toolkit ? Pin
sumeet1232-Dec-08 9:02
sumeet1232-Dec-08 9:02 
AnswerRe: Which is the best C++ ERP development toolkit ? Pin
toxcct2-Dec-08 9:11
toxcct2-Dec-08 9:11 
JokeRe: Which is the best C++ ERP development toolkit Pin
CPallini2-Dec-08 9:17
mveCPallini2-Dec-08 9:17 
AnswerRe: Which is the best C++ ERP development toolkit ? Pin
Cedric Moonen2-Dec-08 20:08
Cedric Moonen2-Dec-08 20:08 
AnswerRe: Which is the best C++ ERP development toolkit ? Pin
Stuart Dootson2-Dec-08 20:56
professionalStuart Dootson2-Dec-08 20:56 
GeneralRe: Which is the best C++ ERP development toolkit ? Pin
toxcct2-Dec-08 21:17
toxcct2-Dec-08 21:17 
GeneralRe: Which is the best C++ ERP development toolkit ? Pin
Stuart Dootson2-Dec-08 21:59
professionalStuart Dootson2-Dec-08 21:59 
GeneralRe: Which is the best C++ ERP development toolkit ? Pin
toxcct2-Dec-08 22:07
toxcct2-Dec-08 22:07 
GeneralRe: Which is the best C++ ERP development toolkit ? Pin
Stuart Dootson2-Dec-08 22:36
professionalStuart Dootson2-Dec-08 22:36 

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.