I have standard ABC (clarion 10) Filtered locator, sql database on string field:
So far so good.
It works but when you enter a string for search (to filter) then it highlights not the first record in the listbox but some “strange” record.
The generated by clarion driver query looks like:
SELECT *
FROM dbo.INPROFIL A
WHERE ( A.DescFull LIKE '%nz%' ) AND ( A.DescFull >= 'nz' )
ORDER BY A.DescFull, A.CompSysRef
and strange highlighting probably causing by this part
AND ( A.DescFull >= 'nz' )
not sure why. Any idea how to avoid this???
just note, if I use QBE and set string for search like
*nz
(which means contains of nz) then listbox shows the same result BUT set FIRST record as highlighted.