Sorting Arrays ...
I have an array of variables with integer values, but some times they don't sort correctly. I continue to call upon the sort operation, but it sorts the string wrong every time, until I change the variables again.Dim
Ranger()AsString = {var0, var1, var2, var3, var4, var5, var6, var7, var8, var9}Array.Sort(Ranger)
Rangebox.Text ="" & Ranger(0) &" to " & Ranger(9) &""
Maybe there a problem, where if 3 of the variables have the same value, it causes it to sort weird?

