Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

error 1113 file not open ?

Status
Not open for further replies.

mallee

Programmer
Nov 7, 2000
116
I am using FPW 2.6 and suddenly have a file with
cdx and fpt that will not open. If I do the USE
command I get Error 1113 File Not Open. Has anyone
ran into this ? I have 2 file recovery routines that
until now have never failed me . I am going to the
backup but thanks for any info you might provide.
 
The cdx file or the fpt file is currupt. The file is not opened when you issue the USE command because of this. SO error code 1113 is returned.

In all probability, memo file is currupt i.e. .fpt file is currupt. If the recovery utility can fix it, you are safe. Or else you have to restore the data backup.

If you need my routine to recover data files, contact me.
:) ramani :-9
(Subramanian.G)
FoxAcc
ramani_g@yahoo.com
 
Error 1113 = "attempt to read from a not this is not open"
Example
use customer
seek "0011111"
scatter memver
use
....
replace customer.id with m.ID+"A"
&& this will cause a 1113 error, file not open because it was opened at one time and then closed.
David W. Grewe
Dave@internationalbid.com
ICQ VFP ActiveList #46145644
 
Thanks all,

I solved it by appending the file to a newly created structure, since fox didn't have to open the dbf, it copied
fine. I could find no errors in the new file at all.

Thanks again to those who answered.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top