Please try this modification in xbrowse and test.
In xbrowse, please locate
static function DolphinSeek
Towards the end of this function you locate this line:
- Code: Select all Expand view
- lRet := ( oQry:Seek( c, cSortOrder, nStart - 1, oQry:LastRec(), .T., .T. ) != 0 )
Please replace this line with
- Code: Select all Expand view
if oQry:FieldType( cSortorder ) == 'N' .and. !ISDIGIT( Right( c, 1 ) )
return .f.
endif
lRet := ( oQry:Seek( c, cSortOrder, Max( 1, nStart - 1 ), oQry:LastRec(), .T., .T. ) != 0 )
Can you please test with this change in xbrowse?