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 bkrike 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 matthewtbaker

  1. matthewtbaker

    Load XML Attributes and put Values in VB.NET Controls

    For those looking for the answer, I've discovered it. Dim strFile As String = "mymovie.xml" Dim xmlDoc As XDocument = XDocument.Load(strFile) For Each Title As XElement In xmlDoc.Descendants("Title") If Title.HasElements = True Then lblLocalTitle.Text =...
  2. matthewtbaker

    Load XML Attributes and put Values in VB.NET Controls

    Hi, I've been searching high a low for a clear solution but cannot find one, so hope you can help me understand what I should do. I have an xml file called mymovie.xml (below) which I want to load and pick out certain attributes. I then want to output the values into named labels...

Part and Inventory Search

Back
Top