show/hide this revision's text 2 added 137 characters in body

hmm. I think

CString strColHeader;
strColHeader.Replace(",", "\\,")

would do just as well.

I don't like the code, I tend to break from the while loop instead of having an unnecessary bool 'continue' flag. The incrementing That goes double when he could have used while (occurenceInd != 0) as his loop control variable instead of the boolean.

Incrementing the counter also relies on "+2" which doesn't seem immediately understandable (not at a quick glance), and lastly (and most importantly) he doesn't seem to do comments.

show/hide this revision's text 1

hmm. I think

CString strColHeader;
strColHeader.Replace(",", "\\,")

would do just as well.

I don't like the code, I tend to break from the while loop instead of having an unnecessary bool 'continue' flag. The incrementing the counter also relies on "+2" which doesn't seem immediately understandable (not at a quick glance), and lastly (and most importantly) he doesn't seem to do comments.