HOLA MIRAD TENGO ESTE CODIGO:
Private Sub VListView1_GetItemInfo(ByRef Item As Windows_programa.ui.controls.vListView.ListViewItem) Handles VListView1.GetItemInfo
If Item.SubItems.Count = 0 Then
Item.Text = "Item: " & Item.Index + 1
Item.ImageIndex = 0
Else
VListView1.FlatScrollBar = True
If Item.SubItems.Item(0).Index = 1 Then
Item.SubItems.Item(0).Text = "prueba"
End If
If Item.SubItems.Item(0).Index = 3 Then
Item.SubItems.Item(0).Text = "p"
End If
If Item.SubItems.Item(0).Index = 2 Then
Item.SubItems.Item(0).Text = "furula"
End If
End If
End Sub
LO QUE HACE ES LLENAR UN LISTVIEW VIRTUAL, PERO TENGO UN PROBLMEA Y ES QUE SI ESTABLEZCO MIL ITEM EN
VListView1.ItemCount
EN LOS MIL ITEM ME ESCRIBE LO MISMO
COMO HAGO PARA QUE EN CADA ITEM ME COJA EL VALOR DE UNA VARIABLE DISTINTA ES DECIR AÑADO UN ITEM Y EL VALOR DE LA VARIABLE CAMBIA. COMO LO PUEDO HACER.
SALUDOS Y GRACIAS DE ANTEMANO