(20-02-20, 12:39 AM)Sorax كتب : [ -> ]كيف ممكن اعكس ترتيب محتويات ListBox بحيث يكون ال Item الاول بالاخير وكذا
Dim l As New List(Of String) For Each s As String In ListBox1.Items l.Add(s) Next l.Sort() l.Reverse() ListBox1.Items.Clear() ListBox1.Items.AddRange(l.ToArray)
(20-02-20, 11:46 AM)Sorax كتب : [ -> ].Thanx bro