Click here to Skip to main content
15,880,796 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionMaking a script language? Pin
Lord Kixdemp9-Aug-06 15:51
Lord Kixdemp9-Aug-06 15:51 
AnswerRe: Making a script language? Pin
Christian Graus9-Aug-06 17:00
protectorChristian Graus9-Aug-06 17:00 
GeneralRe: Making a script language? Pin
Lord Kixdemp9-Aug-06 17:29
Lord Kixdemp9-Aug-06 17:29 
AnswerRe: Making a script language? Pin
Rudolf Jan10-Aug-06 0:19
Rudolf Jan10-Aug-06 0:19 
Question[Help] MFC ypelib wrappers for MSXML5 Pin
oaks, rbt9-Aug-06 10:10
oaks, rbt9-Aug-06 10:10 
AnswerRe: [Help] MFC ypelib wrappers for MSXML5 Pin
Gerald Schwab9-Aug-06 18:20
Gerald Schwab9-Aug-06 18:20 
GeneralRe: [Help] MFC ypelib wrappers for MSXML5 [modified] Pin
oaks, rbt10-Aug-06 8:09
oaks, rbt10-Aug-06 8:09 
GeneralRe: [Help] MFC ypelib wrappers for MSXML5 Pin
Gerald Schwab10-Aug-06 9:21
Gerald Schwab10-Aug-06 9:21 
I would suggest that you change your code to check the length of the node list on every iteration of the loop.
if(m_XMLDOMroot.hasChildNodes())
{
    for(int i = 0; i < RootNodeList.get_length(); ++i)
    {
        CXMLDOMElement childnode = RootNodeList.get_item(i); <- This code sometimes user breaks
        SetChildNode(childnode);
    }
}

GeneralRe: [Help] MFC ypelib wrappers for MSXML5 Pin
oaks, rbt14-Aug-06 10:00
oaks, rbt14-Aug-06 10:00 
GeneralRe: [Help] MFC ypelib wrappers for MSXML5 Pin
Gerald Schwab14-Aug-06 15:07
Gerald Schwab14-Aug-06 15:07 
QuestionOpen files handle found Pin
RomTibi9-Aug-06 8:52
RomTibi9-Aug-06 8:52 
QuestionRe: Open files handle found Pin
David Crow9-Aug-06 10:02
David Crow9-Aug-06 10:02 
AnswerRe: Open files handle found Pin
sujtha9-Aug-06 18:53
sujtha9-Aug-06 18:53 
QuestionRe: Open files handle found Pin
Hamid_RT10-Aug-06 8:03
Hamid_RT10-Aug-06 8:03 
AnswerRe: Open files handle found Pin
RomTibi11-Aug-06 20:39
RomTibi11-Aug-06 20:39 
GeneralRe: Open files handle found Pin
Hamid_RT12-Aug-06 2:44
Hamid_RT12-Aug-06 2:44 
GeneralRe: Open files handle found Pin
RomTibi12-Aug-06 6:03
RomTibi12-Aug-06 6:03 
QuestionBHO to intercept image load? Pin
kevinvh200009-Aug-06 8:39
kevinvh200009-Aug-06 8:39 
QuestionSpeeding up the registry Pin
Waldermort9-Aug-06 7:49
Waldermort9-Aug-06 7:49 
AnswerRe: Speeding up the registry Pin
Ravi Bhavnani9-Aug-06 7:57
professionalRavi Bhavnani9-Aug-06 7:57 
GeneralRe: Speeding up the registry Pin
Waldermort9-Aug-06 8:13
Waldermort9-Aug-06 8:13 
GeneralRe: Speeding up the registry Pin
Ravi Bhavnani9-Aug-06 11:20
professionalRavi Bhavnani9-Aug-06 11:20 
AnswerRe: Speeding up the registry Pin
Joe Woodbury9-Aug-06 14:11
professionalJoe Woodbury9-Aug-06 14:11 
QuestionMDI Initial Window Pin
DanYELL9-Aug-06 6:49
DanYELL9-Aug-06 6:49 
AnswerRe: MDI Initial Window [modified] Pin
bob169729-Aug-06 7:25
bob169729-Aug-06 7:25 

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.