kemal turan
Altın Üye
- Katılım
- 10 Haziran 2011
- Mesajlar
- 1,669
- Excel Vers. ve Dili
- Excel 2010 32 bit
- Altın Üyelik Bitiş Tarihi
- 06-10-2032
Merhaba,
Aşağıdaki dblclick olayında eğer listbox da hiç veri yok ise exit sub olsun istiyorum.
If ListBox1.List(ListBox1.ListIndex, 2) = "" Then Exit sub
Bu satır hata veriyor. Yardımlarınız için teşekkürler.
Aşağıdaki dblclick olayında eğer listbox da hiç veri yok ise exit sub olsun istiyorum.
If ListBox1.List(ListBox1.ListIndex, 2) = "" Then Exit sub
Bu satır hata veriyor. Yardımlarınız için teşekkürler.
Kod:
Private Sub ListBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
If ListBox1.List(ListBox1.ListIndex, 2) = "" Then Exit sub
PERTAHSILAT.TextBox1.Value = ListBox1.List(ListBox1.ListIndex, 2)
PERTAHSILAT.TextBox2.Value = ListBox1.List(ListBox1.ListIndex, 3)
PERTAHSILAT.TextBox11.Value = ListBox1.List(ListBox1.ListIndex, 4)
PERTAHSILAT.TextBox22.Value = ListBox1.List(ListBox1.ListIndex, 8)
PERTAHSILAT.TextBox23.Value = ListBox1.List(ListBox1.ListIndex, 0)
PERTAHSILAT.Show
End Sub