c# Programming Glossary: parentnoteid
Populate WinForms TreeView from DataTable http://stackoverflow.com/questions/805457/populate-winforms-treeview-from-datatable display. The Parent Child is defined as If the row has a ParentNoteID then it is a childNode of that note otherwise it is a rootNode... note but not a rootNode if another row has it's ID as it's ParentNoteID. To complicate maybe simplify things I have the below working.. NoteName typeof string DataColumn dc new DataColumn ParentNoteID typeof string dc.AllowDBNull true dt.Columns.Add dc Add sample..
|