Buat 1 buah command button dan masukan kode di bawah untuk menghitung jumlah item yang ada pada listview
Private Sub Command1_Click()
Dim i As Integer
Dim Jumlah as string
For i = 1 To ListView1.ListItems.Count '- 1
Jumlah = (ListView1.ListItems(i).Index) '.SubItems(1))
Next
MsgBox Jumlah
End Sub
0 comments:
Post a Comment