DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub CommandButton1_Click()
Dim Bul As Range
Set Bul = Columns(1).Find(TextBox3, LookAt:=xlWhole)
If Not Bul Is Nothing Then
TextBox4 = Cells(Bul.Row, "B")
TextBox5 = Cells(Bul.Row, "C")
ComboBox1 = Cells(Bul.Row, "D")
If Year(TextBox3) = "2008" Then
Label6 = Cells(Bul.Row, "E")
ElseIf Year(TextBox3) = "2009" Then
Label6 = Cells(Bul.Row, "F")
ElseIf Year(TextBox3) = "2010" Then
Label6 = Cells(Bul.Row, "G")
End If
Else
MsgBox "Aradığınız kayıt bulunamadı !", vbCritical
End If
End Sub