I IanT Registered User. Local time Today, 22:44 Joined Nov 30, 2001 Messages 191 Jan 19, 2005 #1 Hi Is it possible to automatic select all the data shown in a list box instead of clicking on all of the data!
Hi Is it possible to automatic select all the data shown in a list box instead of clicking on all of the data!
I IanT Registered User. Local time Today, 22:44 Joined Nov 30, 2001 Messages 191 Jan 19, 2005 #2 Code to select items in list box Have found some code, for anyone interested: Dim lngSelection As Long For lngSelection = 0 To Me!lstData.ListCount - 1 Me!lstData.Selected(lngSelection) = True Next lngSelection
Code to select items in list box Have found some code, for anyone interested: Dim lngSelection As Long For lngSelection = 0 To Me!lstData.ListCount - 1 Me!lstData.Selected(lngSelection) = True Next lngSelection