Click here to Skip to main content
16,006,709 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalthanks Pin
hanlei00000000095-Dec-06 17:24
hanlei00000000095-Dec-06 17:24 
QuestionHex addition and Hex-to-ASCII string conversion with VC++ Pin
pkyiu2-Dec-06 17:08
pkyiu2-Dec-06 17:08 
QuestionRe: Hex addition and Hex-to-ASCII string conversion with VC++ Pin
George L. Jackson3-Dec-06 3:54
George L. Jackson3-Dec-06 3:54 
AnswerRe: Hex addition and Hex-to-ASCII string conversion with VC++ Pin
pkyiu7-Dec-06 16:36
pkyiu7-Dec-06 16:36 
GeneralRe: Hex addition and Hex-to-ASCII string conversion with VC++ Pin
George L. Jackson7-Dec-06 23:57
George L. Jackson7-Dec-06 23:57 
QuestionProblem with CString length [modified] Pin
Milos Djokovic2-Dec-06 14:23
Milos Djokovic2-Dec-06 14:23 
AnswerRe: Problem with CString length Pin
David Crow2-Dec-06 15:23
David Crow2-Dec-06 15:23 
GeneralRe: Problem with CString length Pin
Milos Djokovic2-Dec-06 16:20
Milos Djokovic2-Dec-06 16:20 
Here are some parts of code (complete func is quite long):
BOOL ReadTag(const CString& rTagName, CString& rValBuffer) {
    ...
    LPTSTR chCurrent;
    LPTSTR chPrev;
    ...
    while(!tagFound) {
      chPrev[0] = chCurrent[0];
      this->Read(chCurrent, 1);  // typeof (this) == CFile*
      ...
      rValBuffer += chCurrent;  // <- here is the problem
      ...
    }
    ...
}


The function works fine at first, but then it just stops. It passes over "rValBuffer += chCurrent" statement without executing it.
GeneralRe: Problem with CString length Pin
Joe Woodbury2-Dec-06 18:39
professionalJoe Woodbury2-Dec-06 18:39 
GeneralRe: Problem with CString length Pin
Joe Woodbury2-Dec-06 18:46
professionalJoe Woodbury2-Dec-06 18:46 
GeneralRe: Problem with CString length Pin
Milos Djokovic2-Dec-06 20:58
Milos Djokovic2-Dec-06 20:58 
GeneralRe: Problem with CString length Pin
ThatsAlok3-Dec-06 20:05
ThatsAlok3-Dec-06 20:05 
GeneralRe: Problem with CString length Pin
David Crow4-Dec-06 3:28
David Crow4-Dec-06 3:28 
GeneralRe: Problem with CString length Pin
ThatsAlok4-Dec-06 18:27
ThatsAlok4-Dec-06 18:27 
QuestionRe: Problem with CString length Pin
David Crow5-Dec-06 2:33
David Crow5-Dec-06 2:33 
Questionstd::sort in Debug builds Pin
Bartosz Bien2-Dec-06 11:43
Bartosz Bien2-Dec-06 11:43 
QuestionHow to get the file handle of an ifstream Pin
Vancouver2-Dec-06 9:55
Vancouver2-Dec-06 9:55 
AnswerRe: How to get the file handle of an ifstream Pin
CPallini2-Dec-06 10:27
mveCPallini2-Dec-06 10:27 
GeneralRe: How to get the file handle of an ifstream Pin
Vancouver2-Dec-06 15:01
Vancouver2-Dec-06 15:01 
GeneralRe: How to get the file handle of an ifstream Pin
CPallini2-Dec-06 22:00
mveCPallini2-Dec-06 22:00 
QuestionWM_VSCROLL simple question Pin
LightTD2-Dec-06 9:39
LightTD2-Dec-06 9:39 
GeneralRe: WM_VSCROLL simple question Pin
prasad_som10-Dec-06 23:25
prasad_som10-Dec-06 23:25 
QuestionCan't Find gdiplus.h in Cylinder Progress Ctrl Demo files Pin
Larry Mills Sr2-Dec-06 9:25
Larry Mills Sr2-Dec-06 9:25 
AnswerRe: Can't Find gdiplus.h in Cylinder Progress Ctrl Demo files Pin
Joe Woodbury2-Dec-06 9:59
professionalJoe Woodbury2-Dec-06 9:59 
AnswerRe: Can't Find gdiplus.h in Cylinder Progress Ctrl Demo files Pin
Christian Graus2-Dec-06 10:09
protectorChristian Graus2-Dec-06 10:09 

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.