Also l for my handy hints, i shall be supling some code to quickly sort a listbox and some keyboard shortcuts:

To Sort a List box
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

'This will set the listbox to automaticly sort its contents. this causes it to sort the items immediatly

lstBox.Sorted = True

'Should you not want the list box to coninue sorting, simply set sorted to false

lstBox.Sorted = False

'Now you have an alphaabectical listbox!

End Sub

To comment and comment a section of code
CTRL + K, CTRL + C Comments selected text.

CTRL + K, CTRL + U Uncomments selected text.
(This means to hit CTRL + K, then the second key combo)