Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
USE command
Message
 
To
28/10/1999 17:28:52
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Miscellaneous
Thread ID:
00283418
Message ID:
00283679
Views:
13
>Hi Guys,
>
>If I use the following code and I end up with 'YTDDET.dbf' is a read-only. I also notice that it will work once, the second time I got this message.
>
>SELECT * FROM YTDDET WHERE BETW( ACCBRN, "1000","9999");
>AND !INLIST( ACCBRN,"9612") INTO CURSOR TEMP
>
>INDEX ON BDATE TAG BDATE

Add a NOFILTER command to the select statement.
SELECT * ;
  FROM YtdDet ;
 WHERE BETWEEN( AccBrn, "1000","9999") ;
   AND !INLIST( ACCBRN,"9612") ;
 NOFILTER ;
 INTO CURSOR TEMP
Previous
Reply
Map
View

Click here to load this message in the networking platform