CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Aug 2015
    Posts
    1

    dbfntx/1001 error

    My CLIPPER 5.2 applicatrion has 15 DBF files and 32 INDEX files. While I run it , there is run time error DBFNTX 1001/ DOS ERROR 4 .
    However, if I close some open DBFS, then no error.
    Please suggest solution…

  2. #2
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: dbfntx/1001 error

    Victor Nijegorodov

  3. #3
    Join Date
    Aug 2015
    Posts
    2

    Re: dbfntx/1001 error

    Quote Originally Posted by beniaminomurgo View Post
    My CLIPPER 5.2 applicatrion has 15 DBF files and 32 INDEX files. While I run it , there is run time error DBFNTX 1001/ DOS ERROR 4 .
    However, if I close some open DBFS, then no error.
    Please suggest solution…
    Check to make sure that the specified file exists. If the file is not in the directory where the application runs, use SET DEFAULT or SET PATH to make the file accessible or specify the full path name where the file can be found. In a network environment, make sure the application has the necessary rights to access the file. If the file is available only for read access, use the READONLY clause on the USE command.
    CA-Clipper's default error handler (Errorsys.prg) will set NETERR() to true (.T.) and will ask DBFNTX to default if the error was due to a sharing violation on the network.
    See Also: DBF Repair Toolbox https://www.repairtoolbox.com/dbfrepair.html

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured