'Select all entries in list box
Dim i as Integer
Dim intListCount as Integer
intListCount = lstEmployee.ListCount - 1
For i = 0 To intListCount
lstEmployee.Selected(i) = True
Next
'Place this code in the Dbl Click event of your list box.
'Change lstEmployee to the name of your list box