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

how to find indexes for a dbf

Status
Not open for further replies.

lwfg

Programmer
Feb 9, 2009
52
US
How do you find all the index orders (in a cdx file) for a dbf?
 
Tried ?ataginfo() and got error message "Program ataginfo.prg does not exist."

Using VFP 6.
 
vfp6 should have Key(), also Tagcount() and Tag().

Code:
use table
For lnCount = 1 to tagcount()
  ? Tag(lnCount)
  ? Key(lnCount)
Endfor

Bye, Olaf
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top