Listview + Treeview

  • Thread starter Thread starter IlQlo
  • Start date Start date
I

IlQlo

Hi! I'm working with Vb.Net 2005 to do an application that need a simple
listview with sorting function but also with a tree layout to show the
informations. A commercial examples is "Glacial TreeList". Has someone
information about open source/freeware project/code? Thanks. (Ilqlo)
 
Ilglo,

In the 101 samples of VBNet 2003 is a nice sample about making a simple
explorer type program.

http://www.microsoft.com/downloads/...F8-033D-420B-A3B1-3074505C03F3&displaylang=en

I would in your case start with that and than this one.

http://msdn2.microsoft.com/en-us/library/ms229643.aspx

Be aware that this one sorts numeric items as strings and therefore 10 comes
before 100, if you don't want that , you have to do some changes on that,
which are not to difficult.

I hope this helps,

Cor
 
Hi Cor, Thank You for your information, but my problem consists to create a
single listview which contains also the tree stucture.

Example:


Name Address Phone
-----------------------------------------
+ Ilqlo
-----Cor AAAA BBBB
-----Two CCCC DDDD
-----------------------------------------

Like the way we read the news and their answers.

Thanks.
IlQlo
 
IlQlo said:
I'm working with Vb.Net 2005 to do an application that need a simple
listview with sorting function but also with a tree layout to show the
informations. A commercial examples is "Glacial TreeList". Has someone
information about open source/freeware project/code?

ContainerListView and TreeListView: Writing VS.NET design-surface compatible
controls
<URL:http://www.codeproject.com/cs/miscctrl/extendedlistviews.asp>

TreeListView
<URL:http://www.codeproject.com/cs/miscctrl/TreeListView.asp>

VB.NET TreeListView
<URL:http://www.codeproject.com/vb/net/vbnettreelistview.asp>
 
IlQlo ha scritto:
Hi! I'm working with Vb.Net 2005 to do an application that need a simple
listview with sorting function but also with a tree layout to show the
informations. A commercial examples is "Glacial TreeList". Has someone
information about open source/freeware project/code? Thanks. (Ilqlo)

Hi half-man.
You could also spread your legs.

This solutions is OPEN for sure ! ! !
 
Back
Top