sirkülasyon
Altın Üye
- Katılım
- 10 Temmuz 2012
- Mesajlar
- 2,518
- Excel Vers. ve Dili
- 2021 LTSC TR
- Altın Üyelik Bitiş Tarihi
- 18-06-2026
Kod:
Dim Personel As Worksheet
If TextBox1.Text = "" Then Exit Sub
Set Personel = Worksheets("Personel")
sor = MsgBox(aranan & " T.C. Kimlik Numaralı öğrenci bilgileri için Güncelleme yapılacak mı?", vbYesNo + vbInformation, "Bilgi")
If sor = vbNo Then Exit Sub
aranan = TextBox1.Text
değiştir_satır = Worksheets("Personel").Range("B:B").Find(aranan).Row
Worksheets("Personel").Cells(değiştir_satır, 3) = TextBox2.Value
Worksheets("Personel").Cells(değiştir_satır, 4) = TextBox3.Value
Worksheets("Personel").Cells(değiştir_satır, 5) = TextBox4.Value
Worksheets("Personel").Cells(değiştir_satır, 6) = TextBox5.Value
Worksheets("Personel").Cells(değiştir_satır, 7) = TextBox6.Value
Worksheets("Personel").Cells(değiştir_satır, 8) = TextBox7.Value
Worksheets("Personel").Cells(değiştir_satır, 9) = TextBox8.Value
Worksheets("Personel").Cells(değiştir_satır, 10) = TextBox9.Value
Worksheets("Personel").Cells(değiştir_satır, 11) = TextBox10.Value
Worksheets("Personel").Cells(değiştir_satır, 12) = TextBox11.Value
Worksheets("Personel").Cells(değiştir_satır, 13) = TextBox12.Value
Worksheets("Personel").Cells(değiştir_satır, 14) = ComboBox1.Value
Worksheets("Personel").Cells(değiştir_satır, 15) = ComboBox2.Value
For Each i In Me.Controls
If TypeName(i) = "TextBox" Or TypeName(i) = "ComboBox" Then i.Value = ""
Next i
Set Personel = Nothing
Listboxtan Textboxlara aktardığım bilgileri yukarıdaki kod ile güncelliyorum. Ancak;
Aynı TC kimlikli olduğu zaman sıkıntı yaşıyorum. Listboxtaki satıra göre nasıl güncelleyebilirim?