Is there some way to totally disable the Sort interference? Or am I missing an option somewhere? The SortType seems to get reinstated as soon as an IndexFieldName is set. I added 1-preceding blank to Zee thinking it would always move to the top as it did in my Delphi version NOT using ZEOS. Other characters are also ignored like "_" etc. As soon as I set the IndexFieldNames to "Name" it uses the Sort again instead of the Delphi-like IndexFieldNames behaviour where leading spaces are acknowledged.
Is it me or???
Code: Select all
// I DO want the subsequent Names to be Aplha-Sorted - Before sorting...
' Zee' <-- I want "Zee" to always be the first item
'Chuck'
'Billy'
// If I set "IndexFieldNames:='Name';" I get the following.
ZEOS DELPHI
'Billy' ' Zee'
'Chuck' 'Billy'
' Zee' 'Chuck'
// What want is
' Zee'
'Billy'
'Chuck'