How to Programmatically Display Index Tags

Last reviewed: June 27, 1995
Article ID: Q108611
The information in this article applies to:
  • Microsoft FoxPro for Windows, versions 2.5x
  • Microsoft FoxPro for MS-DOS, versions 2.0, 2.5x
  • Microsoft FoxPro for Macintosh, versions 2.5x, 2.6a

By using the following program, you can quickly display the index tags available for the current database, rather than making the user open the View window and then the database setup.

   CLEAR
   x=1   && used for both tag counter and screen coordinate counter
   IF LEN(TAG(DBF()+".cdx",1))>0
     @x+3,2  SAY "Tag Name"
     @x+3,22 SAY "Index Expression"
     DO WHILE LEN(TAG(DBF()+".cdx",x))>0
       SET ORDER TO ALLTRIM(TAG(DBF()+".cdx",x))
       @x+5,2  SAY TAG(DBF()+".cdx",x)
       @x+5,22 SAY IIF("DESCENDING"$UPPER(SET("ORDER")),"Dsc", "Asc")
       @x+5,27 SAY KEY(DBF()+".cdx",x)      && SAME AS SYS(14,x,DBF())
       x=x+1
     ENDDO
   ELSE
       @2,2 SAY "No tags defined."
   ENDIF
   RELEASE x


Additional reference words: FoxDos FoxWin FoxMac 2.00 2.50 2.50a 2.50b
2.50c 2.60a index tag @ say
KBCategory: kbprg kbdisplay kbui kbcode
KBSubcategory: FxprgGeneral


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: June 27, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.