T
TC
1- How Do I know the number of item is list box?
form example
Listbox1
a
b
c
d
e
I want to know the number of item in the listbox1 in (this example is 5)
Isn't there a ListCount property? (I don't have Access here to check.)
2- How do I know is there any row (data) in the listbox?
ListCount > 0 ?
3- How Can I select all item in a list box using command button?
I imagine you would need to set the MultiSelect property of the listbox to
True, then set the Selected property of each Item in the list. Check out
Selected in online help.
HTH,
TC