摘要: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, xmldom, XMLIntf, msxmldom, XMLDoc, StdCtrls; type TForm1 = class(TForm) XML... 阅读全文
posted @ 2008-01-03 22:16 万一 阅读(13436) 评论(1) 推荐(0)
摘要: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, xmldom, XMLIntf, msxmldom, XMLDoc, StdCtrls; type TForm1 = class(TForm) XML... 阅读全文
posted @ 2008-01-03 21:37 万一 阅读(6679) 评论(0) 推荐(0)
摘要: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, xmldom, XMLIntf, msxmldom, XMLDoc, StdCtrls; type TForm1 = class(TForm) XML... 阅读全文
posted @ 2008-01-03 18:13 万一 阅读(6655) 评论(0) 推荐(0)
摘要: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, xmldom, XMLIntf, msxmldom, XMLDoc, StdCtrls; type TForm1 = class(TForm) XML... 阅读全文
posted @ 2008-01-03 17:01 万一 阅读(6504) 评论(2) 推荐(0)
摘要: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, xmldom, XMLIntf, msxmldom, XMLDoc, StdCtrls; type TForm1 = class(TForm) XML... 阅读全文
posted @ 2008-01-03 16:46 万一 阅读(7377) 评论(2) 推荐(0)
摘要: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, xmldom, XMLIntf, msxmldom, XMLDoc, StdCtrls; type TForm1 = class(TForm) XML... 阅读全文
posted @ 2008-01-03 16:29 万一 阅读(6722) 评论(1) 推荐(0)
摘要: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, xmldom, XMLIntf, msxmldom, XMLDoc, StdCtrls; type TForm1 = class(TForm) XML... 阅读全文
posted @ 2008-01-03 16:12 万一 阅读(8983) 评论(6) 推荐(0)
摘要: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, xmldom, XMLIntf, msxmldom, XMLDoc, StdCtrls; type TForm1 = class(TForm) XML... 阅读全文
posted @ 2008-01-03 14:52 万一 阅读(10293) 评论(0) 推荐(0)
摘要: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, xmldom, XMLIntf, msxmldom, XMLDoc, StdCtrls; type TForm1 = class(TForm) XML... 阅读全文
posted @ 2008-01-03 14:33 万一 阅读(11259) 评论(3) 推荐(0)
摘要: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, xmldom, XMLIntf, msxmldom, XMLDoc, StdCtrls; type TForm1 = class(TForm) XML... 阅读全文
posted @ 2008-01-03 13:51 万一 阅读(11990) 评论(11) 推荐(0)
摘要: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, xmldom, XMLIntf, msxmldom, XMLDoc, StdCtrls; type TForm1 = class(TForm) XML... 阅读全文
posted @ 2008-01-03 13:12 万一 阅读(12353) 评论(3) 推荐(0)
摘要: 先虚拟一个测试文件: test.xml; 放在 c:\temp\ 下备用. 张三 男 34 李四 女 43 王五 女 25 孙六 男 52 unit Unit1; interface uses Classes, C... 阅读全文
posted @ 2008-01-03 11:29 万一 阅读(25698) 评论(6) 推荐(2)
摘要: 1、TXMLDocument 适用于内存中操作和建立新的 xml 2、一个 TXMLDocument 文档其实就是一个节点集合 3、每个节点包括名称、文本内容、属性集合、子节点集合 4、可以按位置或名称访问节点 5、每一个节点都是一个 IXMLNode 对象 6、每一个节点下包含的节点集合是一个 IXMLNodeList 对象, 用节点的 ChildNodes 属性获取 7、根节点 XMLDoc... 阅读全文
posted @ 2008-01-03 01:03 万一 阅读(10180) 评论(0) 推荐(1)