Hi Barton,
Thanks for the example - I've been on leave hence the delay.
I'm looking at your TicketsType procedure.
there's no locator visible in your example because all the data is visible.
ie your page loaded browse can display 10 records, and you only have 4 in the data file.
adding some more records, and the locator becomes visible.
Your "Default Sort Order" setting on the Locators tab is unnecessary. You only need to use this if you are creating custom sort orders.
A better way to set the default sort order, is to go to the field itself, in the General Tab, then to the Sort tab, then tick on the option there "This column is the default sort order" (which I see you've done as well.)
Incidentally you don't need to enter "Custom sort orders" there - they are causing you some problems.
What you've entered are "case sensitive sort orders" - which are not, I think, what you wanted. If you remove those settings then the default is used.
Where you had
+TCKT:Description
it should have been
+Upper(TCKT:Description)
to be case insensitive.
cheers
Bruce