I have made something that reads from an xml file it all works perfectly. but there is one thing that wont work.
this is the xml part that works fine
<title>lorum ipsum lorum ipsum</title>
this is the xml part i want to read:
<enclosure url="http://media.nu.nl/m/m1nxf1eaa6mh_sqr256.jpg" type="image/jpeg" />
i only want the url in a variable.
and this is what i have so far:
switch (node.Name)
{
case "title": label5.Text = (node.InnerText); break;
case "enclosure": string picbox2 = (node.InnerText); break;
pictureBox2.ImageLocation = picbox2;
case "description": label6.Text = (node.InnerText); i++; break;
}
i hope i have provided enough information.