Sorgu için arama sonuçları: listcount

  1. U

    SumIfs hakkında

    Merhaba SumIfs ile toplam alıyorum Me.ListBox3.List(ListBox3.ListCount - 1, 1) = Application.WorksheetFunction.SumIfs(Sheets("Takip").Range("G:G"), Sheets("Takip").Range("D:D"), _ ">=" & a, Sheets("Takip").Range("D:D"), "<=" & B, Sheets("Takip").Range("B:B"), ListBox1.Selected(i) = True)...
  2. L

    Soru SpinButton İle Listboxtaki İlk ve Son Satıra Gitmek

    Aşağıdaki kodları userformun kod sayfasına kopyalayarak deneyin. Private Sub SpinButton1_SpinDown() ListBox1.ListIndex = ListBox1.ListCount - 1 End Sub Private Sub SpinButton1_SpinUp() ListBox1.ListIndex = 0 End Sub
  3. dEdE

    Listbox'da tarih formatı sorunu

    ...If WorksheetFunction.CountIf(Range("a" & i & ":a15"), Cells(i, 1)) = 1 Then ListBox1.AddItem ListBox1.List(ListBox1.ListCount - 1, 0) = Sheets("Anasayfa").Range("A" & i) ListBox1.List(ListBox1.ListCount - 1, 1) = Format(Sheets("Anasayfa").Range("B" & i), "dd.mm.yyyy") End If...
  4. Astalavista58

    Listbox Tarih Formatı

    ...= &H80000008 Else tbSicil.BackColor = vbRed tbSicil.ForeColor = vbWhite End If Set S1 = Nothing Label33.Caption = "BULUNAN PERSONEL SAYISI : " & listBalya.ListCount captionsil Application.ScreenUpdating = True Application.Calculation = xlCalculationAutomatic...
  5. Emir Hüseyin Çoban

    Sql like kullanımı hakkında

    ...rst = New ADODB.Recordset With rst .ActiveConnection = cnt Dim selection As String Dim lItem As Long For lItem = 0 To UserForm1.ListBox1.ListCount - 1 If UserForm1.ListBox1.Selected(lItem) = True Then selection = selection & "'" & Replace(Left(UserForm1.ListBox1.List(lItem), 10), "'", "''")...
  6. M

    Sql like kullanımı hakkında

    ...rst = New ADODB.Recordset With rst .ActiveConnection = cnt Dim selection As String Dim lItem As Long For lItem = 0 To UserForm1.ListBox1.ListCount - 1 If UserForm1.ListBox1.Selected(lItem) = True Then selection = selection & "'" & Replace(Left(UserForm1.ListBox1.List(lItem), 10), "'", "''")...
  7. M

    Sql like kullanımı hakkında

    ...Dim lItem As Long Dim strSQL As String Dim i As Integer Dim aData() As String Dim lngLoop1 As Long For lItem = 0 To UserForm1.ListBox1.ListCount - 1 If UserForm1.ListBox1.Selected(lItem) = True Then selection = selection & "'" & Replace(Left(UserForm1.ListBox1.List(lItem), 10), "'", "''")...
  8. T

    Ağda bulunan bir excelde arama yapma

    ...aktar End Sub Private Sub aktar() With ListBox1 .ColumnCount = 2 For Sat = 1 To 20 .AddItem .List(.ListCount - 1, 0) = Sheets("Sayfa1").Cells(Sat, 1) .List(.ListCount - 1, 1) = Sheets("Sayfa1").Cells(Sat, 2) Next End With...
  9. M

    Soru sayfalar arası arama hatası

    ...şekilde listboxtan tıklayarak plakayı alıyorum Private Sub lst_dask_DblClick(ByVal Cancel As MSForms.ReturnBoolean) For i = 0 To lst_dask.ListCount - 1 If lst_dask.Selected(i) = True Then ' frmanamenu.TextBox23 = lst_dask.Column(0, i) ' frmanamenu.TextBox18 =...
  10. ÖmerFaruk

    Listbox'dan sayfaya kayıt

    ...& Satır) = TextBox2 Sayfam.Range("B" & Satır) = TextBox3 Sayfam.Range("C" & Satır) = TextBox2 For i = 0 To Me.ListBox1.ListCount - 1 If Me.ListBox1.Selected(i) Then Sayfam.Range("D" & Satır).Offset(, i) = Me.ListBox2.Text End If Next i End Sub
  11. M

    Combobox açılır pencere genişliği

    ...ayarlarını nasıl sıfırlayabilirim. 2 Açılır pencereyi 20 tane yapacak kod ve özelliklerden nasıl yapabilirim. (Aşağıdaki kodu sayfa2 ye yazdım (modüle değil) bir işe yaramadı. ) Private Sub ComboBox1_Initialize() ComboBox1.ListRows = ComboBox1.ListCount Sayfa2.ComboBox1.ListRows = 15 End Sub
  12. C

    vba ile sonraki kayıt bulma hk.

    teşekkür ederim
  13. Emir Hüseyin Çoban

    vba ile sonraki kayıt bulma hk.

    ...a = Me.ListBox1.ListIndex + 1 Dim t As String Dim i As Integer t = arama.Text ListBox1.ListIndex = -1 If arama.Text = "" Then Exit Sub For i = a To ListBox1.ListCount - 1 If UCase(ListBox1.List(i)) Like UCase(t & "*") Then ListBox1.ListIndex = i Exit Sub End If Next i End Sub .
  14. Emir Hüseyin Çoban

    vba ile sonraki kayıt bulma hk.

    ...Integer) If KeyCode = 13 Then Dim t As String Dim i As Integer t = TextBox22.Text ListBox1.ListIndex = -1 If TextBox22.Text = "" Then Exit Sub For i = 0 To ListBox1.ListCount - 1 If UCase(ListBox1.List(i)) Like UCase(t & "*") Then ListBox1.ListIndex = i Exit Sub End If Next i End If End...
  15. C

    vba ile sonraki kayıt bulma hk.

    ...Dim i As Integer t = TextBox22.Text ListBox1.ListIndex = -1 If TextBox22.Text = "" Then Exit Sub For i = 0 To ListBox1.ListCount - 1 If UCase(ListBox1.List(i)) Like UCase(t & "*") Then ListBox1.ListIndex = i Exit Sub End If Next i...
  16. ÖmerFaruk

    Listbox' Veri Alma Hakkında

    ...almanız gerekir. Örnektir. Kendinize uyarlamalısınız. For i = 10 To 24 Me.ListBox2.AddItem ListBox2.List(Me.ListBox2.ListCount - 1, 0) = Range("A" & i) ListBox2.List(Me.ListBox2.ListCount - 1, 1) = Range("B" & i) ListBox2.List(Me.ListBox2.ListCount - 1, 2)...
  17. G

    Soru İşlem Esnasında Ekranın Görünmesini istemiyorum.

    ...Last_Row = .Cells(.Rows.Count, 1).End(3).Row + 1 .Cells(Last_Row, 1).Resize(FILTRELEME.ListBox1.ListCount, FILTRELEME.ListBox1.ColumnCount) = FILTRELEME.ListBox1.List .Cells(Last_Row, 1).Resize(FILTRELEME.ListBox1.ListCount...
  18. G

    Soru E Posta Ile Gönder'e istediğimiz sayfayı ek yapma

    ...Last_Row = .Cells(.Rows.Count, 1).End(3).Row + 1 .Cells(Last_Row, 1).Resize(FILTRELEME.ListBox1.ListCount, FILTRELEME.ListBox1.ColumnCount) = FILTRELEME.ListBox1.List .Cells(Last_Row, 1).Resize(FILTRELEME.ListBox1.ListCount...
  19. T

    Soru Vba Object required hatası

    ...> 0 _ And Me.TextBox1 <> "" Then Me.ListBox1.AddItem For cln = 1 To rng.Columns.Count ad = Sheet1.Cells(rc, cln) Me.ListBox1(ListBox1.ListCount - 1, cln - 1) = ad Next cln End If Next rc Me.ListBox1.Height = Me.ListBox1.ListCount * 20 End Sub
  20. Korhan Ayhan

    Soru Checkbox'a göre sütun silme

    ...Last_Row = .Cells(.Rows.Count, 1).End(3).Row + 1 .Cells(Last_Row, 1).Resize(FILTRELEME.ListBox1.ListCount, FILTRELEME.ListBox1.ColumnCount) = FILTRELEME.ListBox1.List .Cells(Last_Row, 1).Resize(FILTRELEME.ListBox1.ListCount...
Üst