- Katılım
- 26 Eylül 2020
- Mesajlar
- 171
- Excel Vers. ve Dili
- excel 2019 pro.Türkçe
- Altın Üyelik Bitiş Tarihi
- 26-09-2021
Aşağıdaki kod ile lisitbox1'den listbox3'veri aktarıyorum.Projede toplam 16 listbox olacak,hangi listbox seçilmiş ise listbox1'deki siparişler o listbox'a veri aktaracak.Yani listbox1'de yiyecek ve içecek dökümleri var listbox3'de ise masanın verdiği siparişlerin dökümü var.masa siparişlerinin olduğu Listboxları(16 adet) -visible-false metoduyla ekranda değiştiriyorum.Daha açıklayıcı bilgi verebilirim,eğer zor olacaksa dosyayıda ekleyebilirim.İyi çalışmalar dilerim.
Dim i As Long
If ListBox1.ListIndex = -1 Then Exit Sub
For i = ListBox1.ListCount - 1 To 0 Step -1
If ListBox1.Selected(i) = True Then
ListBox3.AddItem 'ListBox1.List(i, 0)
ListBox3.List(ListBox3.ListCount - 1, 1) = ListBox1.List(i, 0)
ListBox3.List(ListBox3.ListCount - 1, 2) = ListBox1.List(i, 1)
End If
Next i
Dim i As Long
If ListBox1.ListIndex = -1 Then Exit Sub
For i = ListBox1.ListCount - 1 To 0 Step -1
If ListBox1.Selected(i) = True Then
ListBox3.AddItem 'ListBox1.List(i, 0)
ListBox3.List(ListBox3.ListCount - 1, 1) = ListBox1.List(i, 0)
ListBox3.List(ListBox3.ListCount - 1, 2) = ListBox1.List(i, 1)
End If
Next i