C Chris Aug 17, 2006 #2 Seema said: How can I find out weather my listbox is empty or not Click to expand... ListBox.Items.Count = 0
Seema said: How can I find out weather my listbox is empty or not Click to expand... ListBox.Items.Count = 0
D Denis Voyer Aug 17, 2006 #3 If ListBox.Items.Count = 0 Then Do something Else Do this End If Or if you want to use the result somewhere else set a variable to the items count. Variable = ListBox.Items.Count Denis
If ListBox.Items.Count = 0 Then Do something Else Do this End If Or if you want to use the result somewhere else set a variable to the items count. Variable = ListBox.Items.Count Denis