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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DBFCDX do not Link OK

Status
Not open for further replies.

Pontelo

Programmer
Dec 18, 2001
80
BR
Clipper 5.3b Blinker 5.1

I´m trying to use DBFCDX and when linking gives :
Blinker 1115 : DBFCDX.LIB (CL53INIT) ´_DBFCDX´ Unresolved External.
I´m linking with :
LIB DBFCDX.LIB
LIB _DBFCDX.LIB
when I delete REQUEST DBFCDX at the beginning of the my first prg tha message don´t appear but system gives a
650 Processor Stack Fault when system tries to open any DBF.
What am I doing wrong ?
Thank You
 
After the REQUEST DBFCDX statement,are you issuing the statement RDDSETDEFAULT("DBFCDX">. If you didn't, then you have to specifically use a data file similar to the following statement:
Use Customers Index Name, Address NEW VIA "DBFCDX"
- OR -
REQUEST DBFCDX
RDDSETDEFAULT("DBFCDX")

Then you can use the folowing statement:
USE Customers INDEX Name, Address NEW

Hope this helps
Sam
 
The problem was _DBFCDX.LIB damaged. Problably this happened when I upgrade to 5.3b I didn´t notice ´cause I´ve never used CDX.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top