买了一本《Visula Basic 6 XML专业技术》书,书里面说源码在http://www.wrox.com网址可以下载,结果去找怎么也找不到这本书的名字,不知是否是因为这本书是过时的书,如果哪位大侠有该书的源码,请分给小弟一份,本人将不甚感激,高分相送。
我的E-Mail是[email protected],最好能提供下载地址。

解决方案 »

  1.   

    ftp://ftp.wrox.com/professional/3323.zip你去看看,是不是你要的
      

  2.   

    请问在VB和XML中,能用LoadXML函数吗?
    我的strXML这样写对不对?为什么加载后,objDom 仍然是Nothing
        Dim strXML As String
        Dim objDom As MSXML.DOMDocument
        Dim rootNode As IXMLDOMNode
        strXML = "<?xml version=""1.0 "" encoding=""utf-8"" ?><DbSetting>DbSetting</DbSetting>"
        Debug.Print strXML
        Set objDom = New MSXML.DOMDocument '新建一个文档对象
        objDom.loadXML (strXML)
        
        If (Len(objDom.xml)) Then
            rootNode = objDom.documentElement
    '        sDocumentElement = objDom.documentElement.nodeName
    '        txtMessages = "The root element is " & sDocumentElement
        Else
            MsgBox "There is no root element", vbExclamation, "Show Root Element"
        End If
      

  3.   

    为什么我用这里面的程序的时候ftp://ftp.wrox.com/professional/3323.zip
    总是说找不到CDomFunctions这个库,该怎么处理?