PDA

Click to See Complete Forum and Search --> : how can i exec....


Zambi
Mar 18th, 2001, 06:07 PM
How can i execute certain code if a listbox is full with a certain number of items? Can somebodyplease help me.

Mar 18th, 2001, 07:16 PM
Private Sub Command1_Click()

If List1.ListCount >= 10 Then
Msgbox ">=10 in the list"
'execute code
End If

End Sub