Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rockfido

    how to solve this problem in XML!!!

    Thank you so much. That's exactly what i need!!
  2. rockfido

    how to solve this problem in XML!!!

    Hi, everyone, I need to read a tons of xml files like this one: <?xml version="1.0" encoding="UTF-8"?> <IM> <CR ID1="13" ID2="460"> </CR> </IM> my code in VBA is like: For i = 1 To 100 'suppose i have 100 xml files Filename = Sheet1.Cells(i, 1) 'where i store the file path Set Doc = New...
  3. rockfido

    Help!!How to read this XML file using VBA or VB6

    Oh, Just got it done! Thanks!
  4. rockfido

    Help!!How to read this XML file using VBA or VB6

    Dim odc As DOMDocument Dim odc1 As IXMLDOMElement Dim nde As IXMLDOMNode Dim a As IXMLDOMElement Set odc = New MSXML2.DOMDocument odc.Load ("example.xml") For Each nde In odc.SelectNodes("ExportCR") Set a = nde.SelectSingleNode("CR") Debug.Print a.Text Next --------------i could only write...
  5. rockfido

    Help!!How to read this XML file using VBA or VB6

    it works now.... but my another question....how can i get information within each CR? Should I also define CR as IXMLDOMElement? Or define CR as other type? Thanks a lot
  6. rockfido

    Help!!How to read this XML file using VBA or VB6

    Hey guys, Im really new to XML and actually also new to VB6...But i do need to solve the following problem. I need to read the following xml file using either VBA or VB6.0 and save the information into txt as: Date1 Date2 Response R_ID ID1 Des1 ID2 Des3 0109 0108 This...

Part and Inventory Search

Back
Top