Click here to Skip to main content
15,917,061 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionmonolithic form classes (repost from "General Discussions") Pin
OlliesDad25-Oct-05 14:53
OlliesDad25-Oct-05 14:53 
AnswerRe: monolithic form classes (repost from "General Discussions") Pin
Christian Graus25-Oct-05 14:57
protectorChristian Graus25-Oct-05 14:57 
GeneralRe: monolithic form classes (repost from "General Discussions") Pin
OlliesDad25-Oct-05 19:29
OlliesDad25-Oct-05 19:29 
QuestionNew Help Needed Check previous post Pin
Tom Moore25-Oct-05 13:40
Tom Moore25-Oct-05 13:40 
AnswerRe: New Help Needed Check previous post Pin
Christian Graus25-Oct-05 14:05
protectorChristian Graus25-Oct-05 14:05 
Questionstident Pin
first090225-Oct-05 13:09
first090225-Oct-05 13:09 
Questionis there a way to programmatically check if right-to-left support in installed in 2K/XP? Pin
Abu Mami25-Oct-05 10:29
Abu Mami25-Oct-05 10:29 
QuestionCharacter comparison NIGHTMARE Pin
adonisv25-Oct-05 8:35
adonisv25-Oct-05 8:35 
Any reason why this comparison should fail, CONSISTENLY??? Assuming the character at pToken->GetName()[stringIndex] is a - ???? Confused | :confused:

else if (result = strchr("-",pToken->GetName()[stringIndex])) {
// Equals Sign
Operator = CNode::Minus;
szIdString = "Minus";
bIsSymbol = true;
}

My other comparisons are working for semicolon and equals, for example.

else if (result = strchr(";",pToken->GetName()[stringIndex])) {
// Semicolon
Operator = CNode::Semicolon;
szIdString = "Semicolon";
bIsSymbol = true;
}
else if (result = strchr("=",pToken->GetName()[stringIndex])) {
// Equals Sign
Operator = CNode::Equals;
szIdString = "Equals";
bIsSymbol = true;
}

I'm completely stuck on this... Unsure | :~

Normality is a weakness...
AnswerRe: Character comparison NIGHTMARE Pin
kevincwong25-Oct-05 8:52
kevincwong25-Oct-05 8:52 
AnswerRe: Character comparison NIGHTMARE Pin
David Crow25-Oct-05 9:43
David Crow25-Oct-05 9:43 
AnswerRe: Character comparison NIGHTMARE Pin
John R. Shaw25-Oct-05 10:14
John R. Shaw25-Oct-05 10:14 
GeneralRe: Character comparison NIGHTMARE Pin
David Crow25-Oct-05 10:19
David Crow25-Oct-05 10:19 
GeneralRe: Character comparison NIGHTMARE Pin
John R. Shaw25-Oct-05 10:37
John R. Shaw25-Oct-05 10:37 
GeneralRe: Character comparison NIGHTMARE Pin
adonisv25-Oct-05 11:54
adonisv25-Oct-05 11:54 
GeneralRe: Character comparison NIGHTMARE Pin
adonisv25-Oct-05 12:11
adonisv25-Oct-05 12:11 
GeneralRe: Character comparison NIGHTMARE Pin
John R. Shaw25-Oct-05 14:20
John R. Shaw25-Oct-05 14:20 
Questionthe momory leak Pin
valerie9925-Oct-05 8:35
valerie9925-Oct-05 8:35 
AnswerRe: the momory leak Pin
John R. Shaw25-Oct-05 9:29
John R. Shaw25-Oct-05 9:29 
Generalhere is the steps Pin
valerie9925-Oct-05 10:21
valerie9925-Oct-05 10:21 
AnswerRe: the momory leak Pin
David Crow25-Oct-05 9:32
David Crow25-Oct-05 9:32 
Generalthe more leaks...... Pin
valerie9925-Oct-05 10:03
valerie9925-Oct-05 10:03 
GeneralRe: the more leaks...... Pin
John R. Shaw25-Oct-05 10:29
John R. Shaw25-Oct-05 10:29 
GeneralRe: the more leaks...... Pin
valerie9925-Oct-05 10:51
valerie9925-Oct-05 10:51 
QuestionRe: the more leaks...... Pin
David Crow26-Oct-05 3:25
David Crow26-Oct-05 3:25 
GeneralRe: the more leaks...... Pin
krmed26-Oct-05 5:12
krmed26-Oct-05 5:12 

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.