- Katılım
- 2 Mart 2018
- Mesajlar
- 101
- Excel Vers. ve Dili
- excel 2016
- Altın Üyelik Bitiş Tarihi
- 31-01-2024
Kod:
Dim i As String
i = ListBox1.SelectedIndex
Dim item As String
item = ListBox1.SelectedItem.ToString()
ListBox1.SetSelected(0, True)
If i < ListBox1.Items.Count - 1 Then
ListBox1.Items.RemoveAt(i)
ListBox1.Items.Insert(i + 1, item)
ListBox1.SetSelected(i + 1, True)
End If