Senior & Expert .Net Developers Discussion Forum by Nyros Technologies

HIRE .Net Expert Developers Programmers Coders From India
Ruby on Rails PHP .Net Developers Community, Nyros Technologies, Kakinada
 
Log in  or IF not a member please REGISTER
Username:
Password:   


Keyword
Log in | Profile 

HOW TO BIND XML FILE DATA TO A Tree View Control.

 
Post new topic   Reply to topic    Senior & Expert .Net Developers Discussion Forum by Nyros Technologies Index -> XML
View previous topic :: View next topic  
Author Message
sek



Joined: 26 Mar 2010
Posts: 30

PostPosted: Thu Apr 22, 2010 6:56 am    Post subject: HOW TO BIND XML FILE DATA TO A Tree View Control. Reply with quote

hi all .,

I am new to handling xml files.

I am trying to bind my xml files data to a Tree view control.

my Xml File data is like this.


<?xml version="1.0"?>
<Items> 
  <FoodItems>
    <item>
              Pizza
    </item>
    <Price>
              14.45
    </Price>
  </FoodItems>
  <FoodItems>
    <item>
              Noodles
          </item>
    <Price>
              30.00
    </Price>
  </FoodItems>
  <Books>
      <item>
          C#
      </item>
      <price>
           120.50
      </price>
    </Books>
  </Items>

Using C# .net how can we bind to Tree View Control.

Thanks in advance.
_________________
Sekhar
Back to top
View user's profile Send private message
rajesh



Joined: 26 Mar 2010
Posts: 43

PostPosted: Thu Apr 22, 2010 7:28 am    Post subject: Reply with quote

Hi Sekhar.,

I feel that the Following code will Solve your Problem

public void bindData(string path)
    {
        trvXmlData.Nodes.Clear();
        if (File.Exists(path))
        {
             FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);

System.Xml.XmlDocument doc = new System.Xml.XmlDocument();
            doc.Load(fs);
            using (DataSet ds = new DataSet())
            {
                ds.ReadXml(new XmlNodeReader(doc));

                foreach (DataTable tab in ds.Tables)
                {
                    TreeNode ParentNode = new TreeNode((string)tab.TableName);
                    trvXmlData.Nodes.Add(ParentNode);
                    foreach (DataRow row in tab.Rows)
                    {
                        foreach (DataColumn col in tab.Columns)
                        {
                            TreeNode ChildNode = new TreeNode((string)row[col]);
                            ParentNode.ChildNodes.Add(ChildNode);
                        }
                    }
                }
                fs.Close();
            }       
        }   
    }


I executed it And it is working ., Enjoy it.

[/list]
_________________
Cool***************Cool

Best Regards
Rajesh Mani.
Nyros Technologies.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Senior & Expert .Net Developers Discussion Forum by Nyros Technologies Index -> XML
Page 1 of 1


 latest topics 
 Topics   Replies   Author   Views   Last Post 
No new posts Exceptional Manger
1 suraj 27 Thu Sep 02, 2010 8:52 am
Rahul View latest post
No new posts background image for UITableView
0 kumar 31 Wed Sep 01, 2010 10:34 am
kumar View latest post
No new posts Types of Run time exceptions
1 Dheeraj 30 Wed Sep 01, 2010 8:58 am
venkat View latest post
No new posts Access Web Page content in Windows Forms without WebBrowser
3 mouli 258 Wed Sep 01, 2010 7:31 am
rajesh View latest post
No new posts Explain Interlocked Class & Daemon Thread's?
1 mukundh 53 Wed Sep 01, 2010 7:19 am
setty View latest post
No new posts Life Cycle Of Delegate
0 vinay 29 Wed Sep 01, 2010 7:14 am
vinay View latest post
No new posts Accessing methods defined in another page
1 suraj 30 Tue Aug 31, 2010 12:45 pm
Rahul View latest post
No new posts How ASP.Net events are processed?
1 Teena 33 Tue Aug 31, 2010 11:55 am
suraj View latest post
No new posts Universal description discovery and integration
1 Dileep 25 Tue Aug 31, 2010 11:45 am
venkat View latest post
No new posts What is the difference between Shadowing and Overriding ?
1 suraj 35 Tue Aug 31, 2010 11:37 am
Teena View latest post




Hire an expert .Net developer / coder / programmer or development team from India now!!

Other Forums : Ruby on Rails   ::   PHP   |   Free unlimited HTML CSS templates download

Nyros Technologies   |   Kakinada City Portal   |   Developers Blog   |   About .Net Experts   |   More