OK, dcx693:
I've got a list box that, when an entry is CLICKED, will automatically update some text boxes with data from the clicked entry. This works with the ListBox_Click() Procedure.
The problem is that if the user presses an up or down arrow to change from entry to entry, the text boxes will not update their data because a key is being pressed, not the mouse being clicked.
So, I've started looking into the KeyPress, KeyDown and KeyUp procedures.
KeyPress is useless because it doesn't respond to arrow keys.
KeyDown seemed like the way to go, but unfortunately, it responds to the user's key strokes BEFORE the selection changes in the list box.
KeyUp seems to be the way to go because it responds to the user's key stroke AFTER the selection changes in the list box, but it's quirky-- doesn't seem to be working.