我想把word另存为xml之后,用vb读取这个xml的内容,请问如何实现?dim f as integer dim b() as byte dim s as string dim L as long f=freefile() open "abc.xml" for binary access read as #f L=LOF(f) redim b(L-1) b=inputb(L,#f) close #f s=strconv(b,vbUnicode) 上面的读出的xml是好像是繁体字 现在只想把xml里的数据读取出来,组成一个字符串,不读取xml的格式,请问怎么实现啊! 如果你的xml是标准格式,用下边的方法就可以读出来的 Dim xml As MSXML2.DOMDocument30 Set xml = New MSXML2.DOMDocument30 xml.async = False xml.Load CD_Down.FileName
Private Sub btnPrint_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnPrint.Click MouseWait() Dim ClearTempTabelSQL As String 'If Not ......