I know that my english can be better. Please rate my work and not my lack in linguistic skills!

If you find any kind of ownership issue, or you think some content is your property. Please be so kind and contact me, i will remove or solve it ASAP.

You like my free Uploads and want to support me, than please donate here:

Imports System.Xml
Public Class Form1

    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Dim MyData As String
        Dim elemList As XmlNodeList
        Dim arrdump As New ArrayList
        Try
            Using WC As New System.Net.WebClient()
                MyData = WC.DownloadString("http://api.eve-central.com/api/marketstat?typeid=34&regionlimit=10000043&usesystem=30002187")
                Dim MyDoc As New System.Xml.XmlDocument
                MyDoc.LoadXml(MyData)
                elemList = MyDoc.GetElementsByTagName("max")

                For i = 0 To elemList.Count '- 1
                    Console.WriteLine(elemList(i).InnerXml)
                    arrdump.Add(elemList(i).InnerXml)
                Next i
            End Using

        Catch ex As Exception
            'Error downloading
        End Try
    End Sub
End Class