The list box is pre-populated, I need to find the count, reverse the order which I have done, but the last part is to find the min and max numbers from the list. Ive drawn a blank.
Code:Private Sub btnengage_Click(sender As System.Object, e As System.EventArgs) Handles btnengage.Click lstResults.Items.Clear() Dim n As Integer = lstStart.Items.Count Dim min As Integer = lstStart.Items.Item(0) Dim max As Integer = lstStart.Items.Item(lstStart.Items.Count - 1) txtcount.Text = (lstStart.Items.Count) For i As Integer = (n - 1) To (n - txtcount.Text) Step -1 lstResults.Items.Add(lstStart.Items(i)) Next




