I need a command button that will clear all items(numbers) out of two different list boxes.
I appreciate any help!!
JO
Printable View
I need a command button that will clear all items(numbers) out of two different list boxes.
I appreciate any help!!
JO
Try using the Clear method. :rolleyes:
Code:Private Sub MyCommandButton_Click()
Call MyFirstListBox.Clear
Call MySecondListBox.Clear
End Sub
Perfect! Thanks, Yonatan