DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
With ListView1
For i = 2 To c
[COLOR=red]If Cells(i, "F") > 0 Then
[/COLOR] x = x + 1
.ListItems.Add , , Cells(i + 1, 1)
.ListItems(x).SubItems(1) = Cells(i + 1, 1)
.ListItems(x).SubItems(2) = Cells(i + 1, 2)
.ListItems(x).SubItems(3) = Cells(i + 1, 3)
.ListItems(x).SubItems(4) = Cells(i + 1, 4)
.ListItems(x).SubItems(5) = Cells(i + 1, 5)
.ListItems(x).SubItems(6) = Cells(i + 1, 6)
.ListItems(x).SubItems(7) = Cells(i + 1, 7)
.ListItems(x).SubItems(8) = Cells(i + 1, 8)
.ListItems(x).SubItems(9) = Cells(i + 1, 9)
[COLOR=red]End If
[/COLOR] Next i
End With
sevgili arkadaşlar açıklamam dosyamda mevcut örnekleri uyarlamama rağmen bir sonuca ulaşamadım değerli yardımlarınızı bekliyorum tşkler
sayın yiğit tşk ederim allah razı olsun istediğim tam buydu iyi çalışmalar
With ListView1
For i = 2 To c
If Cells(i + 1, 6).Value [COLOR="Red"]<> [/COLOR]0 Then
x = x + 1
.ListItems.Add , , Cells(i + 1, 1)
.ListItems(x).SubItems(1) = Cells(i + 1, 1)
.ListItems(x).SubItems(2) = Cells(i + 1, 2)
.ListItems(x).SubItems(3) = Cells(i + 1, 3)
.ListItems(x).SubItems(4) = Cells(i + 1, 4)
.ListItems(x).SubItems(5) = Cells(i + 1, 5)
.ListItems(x).SubItems(6) = Cells(i + 1, 6)
.ListItems(x).SubItems(7) = Cells(i + 1, 7)
.ListItems(x).SubItems(8) = Cells(i + 1, 8)
.ListItems(x).SubItems(9) = Cells(i + 1, 9)
End If
Next
End With