« on: July 26, 2010, 07:59:20 PM »
I am developing in vb.net and have a lot of experience with vb6, although I am new to .net.
I am trying to create an app that is similar to an 'explorer' app but it looks into a document management system with cabinets, folders and documents.
I am trying to add data columns to each node with information for that object (cabinet, folder, document). I capture the same information regardless of the object type (image, object name, owner name, modify date, version, etc).
I have created a set of node controls and columns in my tree.
My node is created as nodewithimage and I can get the image and the name in the tree with no problems.
I'm also able to associate the appropriate node control to the appropriate column.
I cannot seem to figure out, however, how to set the value of the column for each node except the image and name that is set with the node is created (e.g.):
Cabinet = New NodeWithImage(strObjectName, My.Resources.dm_cabinet, strObjectID)
For each node how do I set my other nodecontrol/column values?
Thanks!