hi all,
i am trying to display a xml file in a datagridview.
i am using windows application with C#.
say for example, i have a xml file like this,
<xml version="1.0" encoding="UTF-8">
<maincategory>
<cat1>
<title>Category1</title>
<link>http://www.w3schools.com</link>
<description><img src="http://static.ibnlive.com/pix/sitepix/09_2007/flames_ramsetu90.jpg" alt="some description</description>
</cat1>
<cat2>
<title>Category2</title>
<link>http://www.ibnlive.com</link>
<description><img src="http://static.ibnlive.com/pix/sitepix/09_2007/rahul_gandhi_white90.jpg"
some description</description>
</cat2>
</maincategory>
in the description i have a img tag containing a image from any site.
i have columns to display title,description.
i need to display the image along with the text in the same column description.
Adding an image column will display the image as a separate column. how can i display the image in the same column
along with the text?
Thanks in advance
Regards
Exelio