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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ayoungan

  1. ayoungan

    sum values if same

    Only thing is that pbXML.xml is in an array. sXml(0) = "<?xml version="1.0"?><pbXML><shipment>..." sXml(1) = "<?xml version="1.0"?><pbXML><shipment>..." sXml(2) = "<?xml version="1.0"?><pbXML><shipment>..." sXml(3) = "<?xml version="1.0"?><pbXML><shipment>..."
  2. ayoungan

    Put XML in Database

    Let's say that I have an array with shipment information. 'Dim sXml As String() = New String(2)...
  3. ayoungan

    sum values if same

    But how about if this needs to go into a VB.NET page that has other controls such as datalist, html tables, etc.? How does that work? Thank you! That xsl will work if I can understand how to incorporate it into the rest of my page.
  4. ayoungan

    sum values if same

    Before totaling: <?xml version="1.0"?> <pbXML> <shipment> <DelDate>11/2/2005 5:00:00 PM</DelDate> <TotalFreight>10.00</TotalFreight> <CarrierID>UPS</CarrierID> <Service>GRD</Service> <Tariff>UPSGD</Tariff> <CarrierServiceName>UPS Ground</CarrierServiceName> </shipment> <shipment>...
  5. ayoungan

    sum values if same

    I have XML documents that are returned from a Web Service, which are each put into an array. sXml(i) = "<foobar><foo1></foo1><foo2></foo2></foobar>" They all have the same elements. From my results, I need to sum <foo1> if <foo2> is the same and display in a datagrid. Any suggestions? ang

Part and Inventory Search

Back
Top