Quote: "please bear this in mind before u start ripping me thanks."
This wasn't ripping.
Quote: "Third, do you even know what your doing?"
What I was asking was if you just copyed and pasted it and didn't understand how it worked. Anyway here is the code you need to sort strings in alphabetical order.
dim towns(3) as string
towns(1)="c"
towns(2)="a"
towns(3)="b"
for a=1 to 3
for b=a to 3
if towns(a)=>towns(b)
temp$=towns(a)
towns(a)=towns(b)
towns(b)=temp$
endif
next b
next a
for t=1 to 3
print towns(t)
next t
wait key
PS:If you have a town that is capitalized and starts with a "B" and a town thats not and starts with a "a" the string with a "B" will come up first because capitals always win over non capitals.