Jun 24, 2003 #1 jmorlock Programmer Apr 25, 2003 46 US How do you unselect everything in a list box. For example under a submit button. So that it back to normal and ready for the next use.
How do you unselect everything in a list box. For example under a submit button. So that it back to normal and ready for the next use.
Jun 24, 2003 #2 fneily Instructor Apr 5, 2002 2,538 US Add the following code to the bottom of you event: For FieldName = 0 To Me![ListBoxName].listcount - 1 Me![ListBoxName].Selected(FieldName) = False Next Neil Upvote 0 Downvote
Add the following code to the bottom of you event: For FieldName = 0 To Me![ListBoxName].listcount - 1 Me![ListBoxName].Selected(FieldName) = False Next Neil
Jun 24, 2003 Thread starter #3 jmorlock Programmer Apr 25, 2003 46 US Thank you for your prompt reply Jeremy J. Morlock IT Specialist Upvote 0 Downvote