DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
[COLOR="Red"]Private Sub UserForm_Activate()
ComboBox1.RowSource = "Veri!A2:A" & Sheets("Veri").Cells(Rows.Count, 1).End(3).Row
End Sub[/COLOR]
[COLOR="Blue"]Private Sub UserForm_Initialize()
ComboBox1.RowSource = "Veri!A2:A" & Sheets("Veri").Cells(Rows.Count, 1).End(3).Row
End Sub[/COLOR]
[B]Private Sub ComboBox1_Change()[/B]
Dim rngBul As Range
With Sheets("Veri")
Set rngBul = .Columns("A").Find(ComboBox1, Lookat:=xlWhole)
If Not rngBul Is Nothing Then
ComboBox2 = .Cells(rngBul.Row, "A")
[COLOR="Blue"] For brn = 1 To 17
Controls("TextBox" & brn) = .Cells(rngBul.Row, brn + 2)
Next[/COLOR]
End If
End With
Set rngBul = Nothing
[B]End Sub[/B]