Jun 17, 2004 #1 Askeladden Programmer Joined Jan 28, 2004 Messages 87 Location NO Is there anyway to check if listboxes are filed or not, within the code. If there are how would you code it? Thanks ahead of time. "Live long and prosper
Is there anyway to check if listboxes are filed or not, within the code. If there are how would you code it? Thanks ahead of time. "Live long and prosper
Jun 17, 2004 1 #2 brucegn Programmer Joined Apr 30, 2004 Messages 20 Location US Look at the .ListCount property of the ListBox object. If List1.ListCount > 0 Then 'run code Else 'other code End If Upvote 0 Downvote
Look at the .ListCount property of the ListBox object. If List1.ListCount > 0 Then 'run code Else 'other code End If
Jun 17, 2004 Thread starter #3 Askeladden Programmer Joined Jan 28, 2004 Messages 87 Location NO Thank you that helped. "Live long and prosper" Upvote 0 Downvote