Quote (carteblanche @ Jun 14 2012 11:57pm)
i recommend creating a class with three properties: month (string), #customers (int), and display (month concat with #)
when user enters data, create an object with the appropriate month and #
add this object to the listbox.Items collection
set the listbox's display property to display
set the listbox's value property to #customers
to find the min, iterate over listbox.Items collection and compare the objects via the #. you will get the object for the min and the object for the max. to display the month, simply call the object's month property
I really have no idea how to go about doing this.