Article ID: 139091
Article Last Modified on 3/24/2000
SET MULTILOCKS ON
USE customer ORDER cust_id
=CURSORSETPROP('buffering',4)
SET KEY TO RANGE "T","V"
BROWSE
When the BROWSE window appears, the "INDEX Internal Consistency Error"
error will also appear. When you press a key, Visual FoxPro quits.
SET MULTILOCKS ON
SET ORDER TO cust_id
=CURSORSETPROP('buffering',4)
SET KEY TO RANGE "T","V"
SET KEY TO RANGE "T","V"
Use the following command to produce the same result:
SET FILTER TO LEFT(cust_id,1)>="T" AND LEFT(cust_id,1)<="V"
Additional query words: VFoxWin fixlist3.00b buglist3.00
Keywords: kbbug kbfix KB139091