Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
60% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #72.8K
~195 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for Fatboy58

[QUOTE=Fatboy58;554500]Vb 2005 problem Is there a way to search for identical items in a listbox en count them ?[/QUOTE] You could sort the listbox and then use a for next loop to step through the listbox contents finding items equal to the next items

Member Avatar for Monza
0
65
Member Avatar for Wilderness Bob

VB array.sort only works with single dimension array, so quickest way would be to use the IComparer function to allow VB.net array sort function to work with your custom array structure. create an array structure (or you could use a class) to hold both your strings in a single object …

Member Avatar for Monza
0
130

The End.