View Single Post
  #2 (permalink)  
Old 11-26-2008, 12:05 PM
VBJohney VBJohney is offline
VB.NET Forum Newbie
.NET Framework: .NET 1.1 (VS 2003)
 
Join Date: Nov 2008
Posts: 2
Reputation: 0
VBJohney is on a distinguished programming path ahead
Default

Looks like you are continuing to use the variable sortedList to hold the sorted list without clearing it out.
put in the line
sortedList = String.Empty before the for loop.
Reply With Quote