I have a multiselect list box and I would like to place a button below it that will clear the highlighted rows when pressed. However I am having difficulty figuring out the code to place behind it. Can anyone help me with this?
Dim intX As Integer
For intX = 0 To ListBoxName.ListCount
Me.ListBoxName.Selected(intX) = False
Next intX
Me.Refresh 'not sure if this is needed though
HTH
[This message has been edited by Fizzio (edited 01-22-2002).]