Listview (How items get populated)
I have an inventory program that when you scan an item it shows in the listview box. Right now when you scan it puts the next item under the first item. What I want to do is when the next item is scanned it will put it above the current item that is listed. So it shows you a list of items scanned with the last one scanned will be at the top of the listview.
Re: Listview (How items get populated)
I'm not sure how you are adding items to the ListView, but you are probably using ListView.Add somewhere. Change that to ListView.Insert(0,<whatever) and you should get your solution. Insert will insert the new item at the specified index, which in your case, is 0.
Re: Listview (How items get populated)
Thanks Shaggy..
That did the trick..