TreeView

T

Trond Hoiberg

Let say i have a bunch of files. Logfiles that is stored in subfolders.
Folder1
--logfile1
--logfile2
--logfile3
Folder2
--logfile1
--logfile2

I want to display these files using data from the files in an TreeView
control. Like this:

Folder1
--DATE1
----logfile1
----logfile2
--DATE2
----logfile3
Folder2
--DATE1
----logfile1
----logfile2

In other words i want to be able to sort the logfiles in a treeview control
using Folder->DATE->logfile.

As i see it i need to generate an object that contains data about the file.
These objects should be stored in an array within another object that is the
date. Dateobject is in an array within folder object.

This question is maybee simular to an previous one that i have asked in this
forum, but i dont regard this as an repost. I'm a newbee trying to learn
this language :)

SO if you have any code samples or can point me to some it would help me a
lot.

Best regards
 
C

Christopher Kimbell

The TreeView control does not support databinding, a techinque used to
display and edit data already stored in some datastructure.
Since you can't use databinding, you can create whatever structure you want.
It would make sence to use a structure that is easy to map over to a
hierarchical structure.

Each TreeNode that is added to the TreeView has a Nodes collection that
contains the sub-nodes for the next level. The exercise then becomes to add
each node into the right place, this depends entirely on what you want to
achieve, have a look at the MSDN samples for an idea of how to do it.

Another option is to use the TreeView as the data structure. This is only
advisable if you have a small program and don't have to view the same data
in multiple ways. Each TreeNode has a Tag property you can use to keep the
reference to the actual file. This reference can then be used for TreeView
context menus etc.

You can use the FileInfo object to get information about a file.


Chris
 
T

Trond Hoiberg

Thank you. I can not use FileInfo because i want to display data from inside
the file. That is why i want to make a class that is picking out data from
the file. One of those fields is a date/time (logging started). That filed
is it i want to display in the treeView control.

Folder
--DateFromInsideFile
---Logfile

That is why i have som trouble with this :)
Best regards
Trond
 
Joined
Oct 16, 2012
Messages
1
Reaction score
0
support.microsoft.com/KB/2687441

In link above you find the solution (in portuguese but search in english)
to bug of TREEVIEW in Win 7 & Office 2007.

when it doen´t works. Here, now works fine.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top