Apr 10, 2009 #1 lwfg Programmer Feb 9, 2009 52 US How do you find all the index orders (in a cdx file) for a dbf?
Apr 10, 2009 #2 Mike Lewis Programmer Jan 10, 2003 17,516 Scotland Use the ATAGINFO() function. __________________________________ Mike Lewis (Edinburgh, Scotland) Visual FoxPro tips, advice, training, consultancy Custom software for your business Upvote 0 Downvote
Use the ATAGINFO() function. __________________________________ Mike Lewis (Edinburgh, Scotland) Visual FoxPro tips, advice, training, consultancy Custom software for your business
Apr 10, 2009 Thread starter #3 lwfg Programmer Feb 9, 2009 52 US Tried ?ataginfo() and got error message "Program ataginfo.prg does not exist." Using VFP 6. Upvote 0 Downvote
Apr 10, 2009 #4 r0gerc Programmer Jun 14, 2004 90 GB Have you tried KEY() or SYS(14) ? Upvote 0 Downvote
Apr 10, 2009 #5 Olaf Doschke Programmer Oct 13, 2004 14,847 DE vfp6 should have Key(), also Tagcount() and Tag(). Code: use table For lnCount = 1 to tagcount() ? Tag(lnCount) ? Key(lnCount) Endfor Bye, Olaf Upvote 0 Downvote
vfp6 should have Key(), also Tagcount() and Tag(). Code: use table For lnCount = 1 to tagcount() ? Tag(lnCount) ? Key(lnCount) Endfor Bye, Olaf
Apr 10, 2009 #6 Mike Lewis Programmer Jan 10, 2003 17,516 Scotland Lwfg, TAGINFO() won't work with 6.0. It was introduced in VFP 7.0. Mike __________________________________ Mike Lewis (Edinburgh, Scotland) Visual FoxPro tips, advice, training, consultancy Custom software for your business Upvote 0 Downvote
Lwfg, TAGINFO() won't work with 6.0. It was introduced in VFP 7.0. Mike __________________________________ Mike Lewis (Edinburgh, Scotland) Visual FoxPro tips, advice, training, consultancy Custom software for your business