Sorgu için arama sonuçları: listcount

  1. M

    Sayfada aranan değeri ListBox ta Listeleme

    ...For Each isim In Alan If UCase(LCase(isim)) Like UCase(LCase(TextBox1)) & "*" Then liste = ListBox3.ListCount ListBox3.AddItem ListBox3.List(liste, 0) = isim 'Sutun B ListBox3.List(liste, 1) = isim.Offset(0, 1)...
  2. N

    combobox seçilen textbox yaz sayfaya aktarma şartlı

    ...For i = 10 To 100 Step 5 If ThisWorkbook.Sheets("Sayfa1").Cells(i, "B").Value <> "" Then ComboBox1.AddItem ThisWorkbook.Sheets("Sayfa1").Cells(i, "B").Value ComboBox1.List(ComboBox1.ListCount - 1, 1) = i End If Next i End Sub örnek dosyada ekledim.
  3. Y

    access ten listbox a veri çekme

    ..."dd.mm.yyyy") Else rowData(i) = CStr(rs.Fields(i).Value) End If Next i Me.lstKayıtlar.AddItem rowData(0) For i = 1 To 15 Me.lstKayıtlar.List(Me.lstKayıtlar.ListCount - 1, i) = rowData(i) Next i rs.MoveNext Loop ' Temizlik rs.Close: cnn.Close Set rs = Nothing: Set cnn = Nothing End Sub
  4. Q

    ListBox da tam eşleşmeden arama yapmak.

    ...Set sf = Sheets("Sayfa1") ListBox1.RowSource = "" ListBox1.Clear For i = 1 To Range("a65536").End(3).Row If sf.Range("A" & i) Like TextBox6.Value & "*" Then 'A sütununda arama yapar. ListBox1.AddItem ListBox1.List(ListBox1.ListCount - 1, 0) = sf.Range("A" & i) End If Next i End Sub
  5. N

    userform listbox ta seçili olan satırı sayfaya aktarma

    merhaba merhaba denedim ustad şöyle ara kısmında j alanına kadar getiriyor toplam sutun 14 fakat 10 sutun geliyor aramada ayrıca bi hata veriyor aramada (hata could the set the list property.Invaled property value) data kısmındaki ilk alanı a: sutunu aktarıyor buna gerek yok sıra no olduğu...
  6. S

    Listbox da aktif sayfayı listeleme

    ...= 11 listonay.ColumnWidths = "27;50;60;60;240;60;60;120;120;220;60" listonay.RowSource = "TUTARSIZLIK!A2:K240" ' If listonay.ListCount = 0 Then Exit Sub For i = 0 To listonay.ListCount = -1 If i Mod 2 = 0 Then listonay.Selected(i) = True End If Next listonay.Enabled = False End Sub Merhaba...
  7. GursoyC

    Soru TextBox değerine göre Listview de arama

    For i = Me.ListBox1.ListCount - 1 To 0 Step -1 If Not (Me.ListBox1.List(i, 0) = Me.TextBox26.value Then Me.ListBox1.RemoveItem i End If Next i
  8. B

    Left Join Hakkında

    Teşekkür ederim kardeşim bu kodla sorunsuz çalıştı eline sağlık
  9. H

    Left Join Hakkında

    Do While Not rs.EOF ListBox1.AddItem rs.Fields("StokAdı").Value ListBox1.List(ListBox1.ListCount - 1, 1) = rs.Fields("Tarih").Value ListBox1.List(ListBox1.ListCount - 1, 2) = rs.Fields("Fiyatı").Value ListBox1.List(ListBox1.ListCount - 1, 3) =...
  10. B

    Left Join Hakkında

    ...verileri ListBox'a ekleyin Do While Not rs.EOF ListBox1.AddItem rs.Fields("StokAdı").Value ListBox1.List(ListBox1.ListCount - 1, 1) = rs.Fields("Tarih").Value ListBox1.List(ListBox1.ListCount - 1, 2) = rs.Fields("Fiyatı").Value...
  11. H

    Left Join Hakkında

    bu arada Do While Not rs.EOF ListBox1.AddItem rs.Fields("StokAdı").Value ListBox1.List(ListBox1.ListCount - 1, 1) = rs.Fields("Tarih").Value ListBox1.List(ListBox1.ListCount - 1, 2) = rs.Fields("Fiyatı").Value ListBox1.List(ListBox1.ListCount - 1, 3) =...
  12. B

    textbox dan listboxda bulma

    HOCAM 10. DAN VAZGEÇTİM 9 BAŞLIK ALACAM AMA KASMASIN ÇOK KASIYOR ADD ITEM İLE BUNUN BAŞKA VERİ ÇEKME YÖNTEMİ YOKMU ACABA
  13. M

    textbox dan listboxda bulma

    ...If deg Like "*" & txtbx & "*" Then ListBox1.AddItem cell.Offset(0, -1).Value ' A sütunu ListBox1.List(ListBox1.ListCount - 1, 1) = cell.Value ' B sütunu ListBox1.List(ListBox1.ListCount - 1, 2) = cell.Offset(0, 1).Value ' C sütunu...
  14. B

    HATA YARDIM TALEBİ

    ...MsgBox "FİRMA İSMİ GİRİNİZ": Exit Sub Set s1 = Sheets("FİRMA MAİL LİSTESİ") x = s1.Cells(Rows.Count, "B").End(3).Row For i = 0 To ListBox1.ListCount - 1 If ListBox1.Selected(i) = True Then Set R = s1.Range("B1:B" & x).Find(Trim(ListBox1.List(i, 1)), , xlValues, xlPart, , , False) If Not R Is...
  15. B

    Listbox a veri gelince satır başına gitmesin

    ..."f") TextBox7.Text = Cells(ActiveCell.Row, "E") TextBox2.Text = Cells(ActiveCell.Row, "C") UserForm28.TextBox1.Text = Cells(ActiveCell.Row, "b") UserForm28.Show toplam = 0 For i = 1 To ListBox1.ListCount toplam = toplam + Val(ListBox1.List(i - 1)) Next i TextBox6 = toplam End Sub
  16. B

    Listbox a veri gelince satır başına gitmesin

    Private Sub UserForm_Initialize() With ListBox1 .RowSource = "A1:G96" .ColumnHeads = False .ColumnCount = 6 .ColumnWidths = "30;60;50;110;60" .RowSource = "A1:G" & Cells(Rows.Count, "B").End(xlUp).Row End With End Sub hocam bendeki inittialize bu...
  17. H

    Listbox a veri gelince satır başına gitmesin

    Böyle bir şey mi ? Private Sub UserForm_Initialize() For i = 1 To 5 ListBox1.AddItem i Next For j = 0 To ListBox1.ListCount - 1 If ListBox1.List(j) * 1 = [b2] Then ListBox1.Selected(j) = True End If Next End Sub
  18. B

    Combobox dan 2. seçtiğim veriyi 2. satıra yazdırma

    ...bu textboxlar için With UserForm7.ListBox1 .ColumnHeads = False .ColumnWidths = "30;60;50;110;60" .ColumnCount = 6 .AddItem .List(.ListCount - 1, 0) = "ADET" .List(.ListCount - 1, 1) = "BARKOD NO" .List(.ListCount - 1, 2) = "PALET NO" .List(.ListCount - 1, 3) = "Müşteri Adı" .List(.ListCount...
  19. B

    Listbox ta en son satırı secme

    hocam ben bu kodu yazınca excelin 96666 ci sayfasına gidiyor benim listbox 96 sayfalık bir liste
  20. B

    listboxda hücre satır toplama

    teşekkürler işimi çözdü hocam
Üst