I think you'll need some code, but since listbox controls are really forms stuff, forum702 is probabley the more correct forum.
Anyway, somthing like this perhaps?
[tt]
dim lngCount as long
dim lst as listbox
set lst = me.controls("lstNameOfYourListBoxControl")
for lngCount = 0 to lst.listcount - 1
lst.selected(lngCount) = true
next lngCount
set lst = nothing[/tt]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.