473,382 Members | 1,355 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

TreeView

23
I built a treeview from a datatable on a windows form, but I am not understanding fully. I could not find anywhere to tell it what the id was going to be. My now I am showing has an associated ID. How do I assign this ID no the child nodes and then how do I pull out the id of the child node they clicked on?

Any help would be much appreciated.

- Lisa
Apr 11 '07 #1
4 1731
prabunewindia
199 100+
i am not getting u correctly
plz be clear lisa

I built a treeview from a datatable on a windows form, but I am not understanding fully. I could not find anywhere to tell it what the id was going to be. My now I am showing has an associated ID. How do I assign this ID no the child nodes and then how do I pull out the id of the child node they clicked on?

Any help would be much appreciated.

- Lisa
Apr 11 '07 #2
LLM
23
hi lisa
this is prabu here.
i read ur query. but not clear to me.
plz be clear. i also did the same i think.
so i can clear u/

Expand|Select|Wrap|Line Numbers
  1.  
  2.             // fill the tree node
  3.             foreach (DataRow row in dtData.Rows)
  4.             {
  5.                 node = tvOffender.Nodes.Add(row["OffenderName"].ToString());
  6.  
  7.                 //get subs
  8.                 daData2 = new OleDbDataAdapter("SELECT LastName + ', ' + FirstName + ' ' + MiddleName + '  (' + convert(varchar(10), InsertDateTime, 101) + ')' AS Name FROM Registration " +
  9.                                 "WHERE ID = " + row["ID"].ToString() + "ORDER BY LastName, FirstName, MiddleName", strConnectionString);
  10.                 daData2.Fill(dtData2);
  11.                 foreach (DataRow row2 in dtData2.Rows)
  12.                 {
  13.                     child = node.Nodes.Add(row2["OffenderName"].ToString());
  14.                 }
  15.             }
  16.  
I fill it like this. How do I assign the ID to my treeview and then grab it out when they click on it in the treeview to move to an edit page?
Apr 11 '07 #3
LLM
23
foreach (DataRow row in dtData.Rows)
{
node = tvOffender.Nodes.Add(row["Name"].ToString());


foreach (DataRow row2 in dtData2.Rows)
{
child = node.Nodes.Add(row2["RegistrationID"].ToString(), row2["Name"].ToString());
}
}



Can someone help? How do I get the ID of the selected node? tv.SelectedNode.value does not exist.. I am getting desperate!
Apr 13 '07 #4
prabunewindia
199 100+
hi lisa,
here u given registrationID as TreeNode text property and Name as Value property. i think regID is int!

code like this da,

child = node.Nodes.Add((string)row2["Name"], convert.ToInt32(row2["RegistrationID"]));

then
get the regID while u selecting the node,

RegID=Convert.ToInt32(tv.SelectedNode.Value);


plz be free and try don't get tension

foreach (DataRow row in dtData.Rows)
{
node = tvOffender.Nodes.Add(row["Name"].ToString());


foreach (DataRow row2 in dtData2.Rows)
{
child = node.Nodes.Add(row2["RegistrationID"].ToString(), row2["Name"].ToString());
}
}



Can someone help? How do I get the ID of the selected node? tv.SelectedNode.value does not exist.. I am getting desperate!
Apr 14 '07 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

42
by: lauren quantrell | last post by:
So many postings on not to use the treeview control, but nothing recently. Is it safe to swim there yet with Access 2000-Access 2003?
5
by: SoKool | last post by:
Can anyone point me to a site where I can get a free treeview control to use in ASP .NET or any tutorial that can help me build my own treeview control. I intend to use a treeview to generate a...
1
by: paradox | last post by:
I want to have a TreeView that shows an image on some items, but not all. Basically, if a certain condition is true, a caution icon is placed next to the treeview item. The problem is that, by...
3
by: Peter | last post by:
Hello, We are inserting a side menu to our application using a class that is writing HTML on all our pages. This is a part of the code as an example: writer.Write(" <table WIDTH=""100%""...
6
by: L.M | last post by:
Hello, I knew how to use the treeview under VB6. After migrating to .NET, well, I'm lost. I try to add a new node, either to the same level or as a child to a selected node in the treeview....
14
by: Mr.D | last post by:
How do I save/load the contents of a Treeview to a file? I have found several good examples written i VB6, but not a single one for VB.NET. Please help. ---- Tim
3
by: christof | last post by:
I've got a really easy problem, please help me: There are two pages in one I'm creating a TreeView like that: TreeView dbTree = new TreeView(); TreeNode dbTreeRoot = new TreeNode("Root");...
2
by: Tymbow | last post by:
I'm building a web application that is analogous to the Windows XP file explorer in function. The left column contains a TreeView, and the right column a DataGrid populated by selecting TreeView...
1
by: kvicky | last post by:
I am trying to load child nodes to a TreeNode in a TreeView in a ASP.net web application. The Treeview with parent nodes are loaded on a Page_load while doing if( ! ISPostback ) and then in the...
8
by: Matt MacDonald | last post by:
Hi All, I have a form that displays hierarchical categories in a treeview. Ok so far so good. What I was to do is have users be able to select a node in the treeview as part of filling out the...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.