seddur
Altın Üye
- Katılım
- 12 Nisan 2012
- Mesajlar
- 531
- Excel Vers. ve Dili
- Microsoft office professional plus 2019
- Altın Üyelik Bitiş Tarihi
- 18-12-2024
Arkadaşlar Merhaba.listboxdan Lİstboxa veri kaydetiyorum ancak veri kaydettiğim listboxdaki bilgiler dosyayı açıp kapadığımda silinmiş oluyor.Bunu engellemenin bir yolu varmı yoksa normal olması gereken bu mu.Yardımcı olursanız sevinirim.Kaydetme kodlarını aşağıda paylaşıyorum.
If ListBox34.ListIndex = -1 Then Exit Sub
For A = ListBox34.ListCount - 1 To 0 Step -1
If ListBox34.Selected(A) = True Then
listbox2.AddItem
listbox2.List(listbox2.ListCount - 1, 0) = ListBox34.List(A, 0)
listbox2.List(listbox2.ListCount - 1, 1) = TextBox1
End If
Next A:
If ListBox34.ListIndex = -1 Then Exit Sub
For A = ListBox34.ListCount - 1 To 0 Step -1
If ListBox34.Selected(A) = True Then
listbox2.AddItem
listbox2.List(listbox2.ListCount - 1, 0) = ListBox34.List(A, 0)
listbox2.List(listbox2.ListCount - 1, 1) = TextBox1
End If
Next A: