Can anybody tell me how to put this XML file from the NOAA web service into my VB application?

I can create the file and have put a copy of the created file here now I just need to put it in my vb application. I am not sure of how to do it or which control to woulb be best to use. I tried a dataset but I couldn't get that to work and am thinking that maybe a tree view would work.

Here is the code I have so far
VB Code:
  1. Private Sub btnGetWeather_Click( _
  2.         ByVal sender As System.Object, _
  3.         ByVal e As System.EventArgs) Handles btnGetWeather.Click
  4.  
  5.         Try
  6.             Dim decLat As Decimal = CDec(38.99)
  7.             Dim decLon As Decimal = CDec(-77.99)
  8.             Dim dtDate As Date = CDate("2006-06-28")
  9.             Dim strDays As String = "5"
  10.  
  11.             Dim myWebService As New gov.weather.[url]www.ndfdXML[/url]
  12.  
  13.             TextBox1.Text = myWebService.NDFDgenByDay( _
  14.                 decLat, _
  15.                 decLon, _
  16.                 dtDate, _
  17.                 strDays, _
  18.                 gov.weather.[url]www.formatType.Item12hourly[/url])
  19.  
  20.             MessageBox.Show("success")
  21.         Catch ex As Exception
  22.             MessageBox.Show( _
  23.                 ex.Message & vbNewLine & _
  24.                 ex.Source & vbNewLine & _
  25.                 ex.StackTrace, _
  26.                 "Web Service Error", _
  27.                 MessageBoxButtons.OK, _
  28.                 MessageBoxIcon.Error)
  29.         End Try

I just need to format the raw XML that comes back and put it in some control that will show it in a easy to read format.

Any advice will be much appreciated.