I have a ListBox with various rows of data (items that someone is buying, basically), and when the user clicks on a row it populates a textbox on the side with the quantity of how many of that thing he's buying. For example, one row might be "Pencils, $5, 3" and clicking the row makes "3" appear in the textbox.
If the user changes that 3 to a 7, for example, I want that to be put back into the row, so we now have "Pencils, $5, 7"
How do I do that?