DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Function Sirala(Liste As Variant)
Dim i As Integer, j As Integer, x As Variant
For i = LBound(Liste) To UBound(Liste) - 1
For j = i + 1 To UBound(Liste)
If StrComp(Liste(i, 0), Liste(j, 0), vbTextCompare) = 1 Then
x = Liste(j, 0)
Liste(j, 0) = Liste(i, 0)
Liste(i, 0) = x
End If
Next j
Next i
Sirala = Liste
End Function
Private Sub CommandButton1_Click()
Liste = ComboBox1.List
ComboBox1.List = Sirala(Liste)
ComboBox1.ListIndex = 0
End Sub
Private Sub UserForm_Initialize()
For i = 1 To 20
ComboBox1.AddItem Cells(i, 1).Value
Next i
ComboBox1.ListIndex = 0
End Sub
Private Sub UserForm_Initialize()
For i = 1 To 20
ComboBox1.AddItem Cells(i, 1).Value
Next i
Liste = ComboBox1.List
ComboBox1.List = Sirala(Liste)
ComboBox1.ListIndex = 0
End Sub
Private Function Sirala(Liste As Variant)
Dim i As Integer, j As Integer, x As Variant
For i = LBound(Liste) To UBound(Liste) - 1
For j = i + 1 To UBound(Liste)
If StrComp(Liste(i, 0), Liste(j, 0), vbTextCompare) = 1 Then
x = Liste(j, 0)
Liste(j, 0) = Liste(i, 0)
Liste(i, 0) = x
End If
Next j
Next i
Sirala = Liste
End Function