Sorgu için arama sonuçları: listcount

  1. Muzaffer Ali

    çoklu seçim liste kutusuna kod ataması yapamadım.

    Merhaba. Sayfanın kod kısmına aşağıdaki kodu kopyalayın. Private Sub ListBox1_Change() Dim Bak As Long For Bak = 0 To ListBox1.ListCount - 1 Cells(Bak + 3, "B") = ListBox1.Selected(Bak) Next End Sub
  2. sirkülasyon

    Çözüldü Listboxta oluşan listeyi Comboboxa benzersiz alma

    ...Dim dict As Object Dim i As Long Set dict = CreateObject("Scripting.Dictionary") For i = 0 To ListBox1.ListCount - 1 dict.Item(ListBox1.List(i)) = vbNullString Next i ComboBox1.List = dict.keys Set dict = Nothing End Sub kodu ile çözüme ulaştım...
  3. M

    Listboxta maksimum sutun

    ...9) = wsb.Sheets("BANKAANASAYFA").Range("j" & i) .List(sat, 10) = wsb.Sheets("BANKAANASAYFA").Range("k" & i) => Bu satırı kaldırırsam sorun yok. Ama bu satırı çalıştırmıyor. sat = sat + 1 Next i End With frm_bankgoster.txt_bankasayisi = frm_bankgoster.lst_bankagoster.ListCount End Sub
  4. Korhan Ayhan

    Listboxtaki verilerin tamamını otomatik olarak seçmek

    Deneyiniz. For i = 0 To ListBox1.ListCount - 1
  5. F

    Listboxtaki verilerin tamamını otomatik olarak seçmek

    ...seçmesini istiyorum ama hata alıyorum. Private Sub CheckBox2_Change() Dim i As Long If CheckBox2.Value = True Then For i = 0 To ListBox1.ListCount ListBox1.Selected(i) = True Next i End If End Sub Yardımcı olacak arkadaşlar için şimdiden teşekkür ederim.
  6. A

    Soru Listbox arama (Harf Duyarlı)

    ...ayırt edemiyordu. If TextBox9 <> "" Then Text = Replace(Replace(TextBox9.Text, "i", "İ"), "ı", "I") For i = ListBox1.ListCount - 1 To 0 Step -1 List = Replace(Replace(ListBox1.List(i, 0), "i", "İ"), "ı", "I") If UCase(Text) <> UCase(List) Then...
  7. A

    Soru Listbox arama (Harf Duyarlı)

    Yanlış anladım herhalde, hangisi işinize yarasa. If TextBox9 <> "" Then For i = ListBox1.ListCount - 1 To 0 Step -1 If Replace(UCase(ListBox1.List(i, 0)), "I", "İ") <> Replace(UCase(TextBox9.Text), "I", "İ") Then ListBox1.RemoveItem (i) End If Next...
  8. A

    Soru Listbox arama (Harf Duyarlı)

    Aşağıdaki kod işinize yarayabilir. If TextBox9 <> "" Then For i = ListBox1.ListCount - 1 To 0 Step -1 If TextBox1 <> ListBox1.List(i, 0) And Replace(UCase(ListBox1.List(i, 0)), "I", "İ") = Replace(UCase(TextBox9.Text), "I", "İ") Then ListBox1.RemoveItem (i)...
  9. sirkülasyon

    Soru Listbox arama (Harf Duyarlı)

    Sub filtrele() ListBox1.List = liste If TextBox9 <> "" Then For i = ListBox1.ListCount - 1 To 0 Step -1 If Not (ListBox1.List(i, 0) Like "*" & TextBox9.Text & "*") Then ListBox1.RemoveItem (i) End If Next End If End Sub Rica...
  10. Korhan Ayhan

    Yönetici Nöbetleri

    ...Say = IIf(ComboBox1.ListIndex < 0, 0, ComboBox1.ListIndex) For X = 0 To ListBox1.ListCount - 1 If ListBox1.Selected(X) = False Then If Weekday(ListBox1.List(X, 0), vbMonday) < 6 Then Sheets("Sayfa1").Cells(X + 3, 3) = ComboBox1.List(Say)...
  11. R

    UserForm'da Combobox ile filtre yapma

    userform açıldığında tümünü göster seçili olarak gelsin nasıl yapılır?
  12. YUSUF44

    UserForm'da Combobox ile filtre yapma

    ...distinct BÖLGE from [Sayfa2$] where BÖLGE is not null" Set rs = con.Execute(sorgu) ComboBox1.Column = rs.getrows ComboBox1.AddItem For i = ComboBox1.ListCount - 1 To 1 Step -1 ComboBox1.List(i) = ComboBox1.List(i - 1) Next ComboBox1.List(0) = "Tümünü Göster" ListBox1.ColumnCount = 5 End Sub
  13. A

    Listbox'da seçilen satırda işlem

    Merhaba Herhalde böyle bir kod işe yarar. Sütun numaraları 0 (sıfır) dan başlar. Dim i As Integer For i = 0 To ListBox3.ListCount - 1 If (ListBox3.Selected(i) = True) Then ListBox3.List(i, 3) = ListBox3.List(i,3) - 1 End If Next i
  14. seddur

    Listbox'da seçilen satırda işlem

    ...veriyi azaltıyor benim istediğim hangi satırı seçersem o satırın 4.kolonundaki veriyi azaltsın.Teşekkür Ederim. Private Sub CommandButton15_Click() Dim a As Byte For a = ListBox3.ListCount - 1 To 20 If ListBox3.Selected(a) = True Then ListBox3.List(a, 4) = Int(ListBox3.List(a, 4)) - 1 End sub
  15. kulomer46

    Soru Userformda Çoklu Seçimli Listboxtaki Verileri Tek Bir Hücreye Alt Alta Yazdırma

    ...alta yazdırılması istendiğinde aşağıdaki kodu kullanabiliriz. Private Sub CommandButton1_Click() Cells(7, 3) = "" For i = 0 To ListBox1.ListCount - 1 If ListBox1.Selected(i) = True Then If Cells(7, 3) = "" Then Cells(7, 3) = ListBox1.List(i) Else Cells(7, 3) =...
  16. ÖmerBey

    ListBox'tan seçilen veriyi silme

    ...Sub hammadde_cikar_Click() Dim sil As Range, a As Integer Set sil = Sheets("Hammadde").Range("A" & Rows.Count) For a = 0 To ListBox1.ListCount - 1 If ListBox1.Selected(a) Then ara = ListBox1.List(a, 0) Set sil = Union(sil, Sheets("Hammadde").Range("A:A").Find(what:=ara...
  17. seddur

    Şartlı Silme

    ...veriyi azaltıyor benim istediğim hangi satırı seçersem o satırın 4.kolonundaki veriyi azaltsın.Teşekkür Ederim. Private Sub CommandButton15_Click() Dim a As Byte For a = ListBox3.ListCount - 1 To 20 If ListBox3.Selected(a) = True Then ListBox3.List(a, 4) = Int(ListBox3.List(a, 4)) - 1 End sub
  18. seddur

    Şartlı Silme

    ...Dim a, i As Integer Dim ara As Variant If MsgBox("Seçtiginiz Veri Silinecek,Eminmisiniz?", vbYesNo) = vbYes Then For a = 0 To ListBox3.ListCount - 1 If ListBox3.Selected(a) Then ara = ListBox3.List(a, 1) Sheets("Liste").Range("B:B").Find(what:=ara, lookat:=xlWhole).EntireRow.Delete End If...
  19. seddur

    Listview'e sipariş ekleme

    ...- bak) + bak + 1 Exit For End If Next If say = UserForm1.TextBox5 Then End If If ListBox1.ListIndex = -1 Then Exit Sub For a = ListBox1.ListCount - 1 To 0 Step -1 If ListBox1.Selected(a) = True Then Set List = ListView1.ListItems.Add(, , UserForm1.TextBox4) List.ListSubItems.Add ...
  20. seddur

    Kod'da yeni düzenleme

    ...kodlarda Listbox3 yerine Listview1 kullandığımızda kodu nasıl düzenleriz.? Yardımcı olursanız sevinirim. For bak = 0 To ListBox3.ListCount - 1 If ListBox3.List(bak, 1) = ListBox1.List(ListBox1.ListIndex, 0) Then ve xrow = IIf(xrow = 0...
Üst