sirkülasyon
Altın Üye
- Katılım
- 10 Temmuz 2012
- Mesajlar
- 2,543
- Excel Vers. ve Dili
- 2021 LTSC TR
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub CommandButton1_Click()
sat = ActiveCell.Row
sut = 8
For a = 0 To ListBox1.ListCount - 1
If ListBox1.Selected(a) Then
Cells(sat, sut).Value = ListBox1.List(a)
sut = sut + 1
End If
Next
End Sub
Private Sub ListBox1_Change()
For a = 0 To ListBox1.ListCount - 1
If ListBox1.Selected(a) Then say = say + 1
Next
If say > 5 Then ListBox1.Selected(ListBox1.ListIndex) = False
End Sub
Private Sub ListBox1_Change()
For a = 0 To ListBox1.ListCount - 1
If ListBox1.Selected(a) Then say = say + 1
If say > 5 Then ListBox1.Selected(a) = False
Next
End Sub