Cita:
Iniciado por kakarot Q propiedad es?¿, por cierto como se pude poner el listview en forma de cuadricula?¿
GRACIAS
Realmente no e trabajado el listview en .NET pero si es parecido al de VB6, creo que con la propiedad VIEW=Details, se puede ver como reporte.
Esto es en C#
Código:
listView1.View = View.Details;
listView1.GridLines = true;
Este Codigo llena un treeview, mas o menos como lo necesitas
Código:
// Create three items and three sets of subitems for each item.
ListViewItem item1 = new ListViewItem("Casa",0);
// Place a check mark next to the item.
item1.Checked = true;
item1.SubItems.Add("100");
item1.SubItems.Add("200.000");
item1.SubItems.Add("1980");
ListViewItem item2 = new ListViewItem("Apartamento",1);
item2.SubItems.Add("60");
item2.SubItems.Add("80.000");
item2.SubItems.Add("2000");
ListViewItem item3 = new ListViewItem("Finca",2);
// Place a check mark next to the item.
item3.Checked = true;
item3.SubItems.Add("1.000");
item3.SubItems.Add("600.000");
item3.SubItems.Add("1994");