- Katılım
- 4 Eylül 2020
- Mesajlar
- 394
- Excel Vers. ve Dili
- Excel 2016
- Altın Üyelik Bitiş Tarihi
- 22-11-2022
Merhaba alttaki kod f8 alanında doğum tarihleri var butona tıklayınca bu ay içerisinde doğum günü olanları listelemesini istiyorum size zahmet bu hafta içerisinde olan koduda paylaşırsanız sevinirim.
Kod:
Private Sub CommandButton2_Click()
sql = "select f1,f2,f3,f4,format([f5],""dd.mm.yyyy""),format([f6],""dd.mm.yyyy""),f7,format([f8],""dd.mm.yyyy"") from " & syfaADo & " where not isnull(f1)"
With Me
On Error Resume Next
sql = sql & " order by [f4]"
Set Rs = Con.Execute(sql)
.ListBox1.ColumnCount = Rs.Fields.Count
.ListBox1.Clear
If Not Rs.EOF = True Then .ListBox1.Column = Rs.GetRows
UserForm3.ListBox1.ColumnWidths = "30;80;90;150;70;70;65;60"
End With
End Sub
Son düzenleme: