[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
VS_NtxDict()         Returns the internal index stack as an array         NEW

Description:

  VS_NtxDict() returns the internal index stack (maintained by
  VS_OpenDbf() when it opens a file) as an array.

Syntax:     

  a_Index = VS_NtxDict()

Pass:       

  Nothing

Return:     

  a_Index is a multi-dimensional array that will contain an element
  for each index file in the following format...

    { c_DbfName, c_NtxName }

Notes:      


Example:    

  #define DBF_NAME 1
  #define NTX_NAME 2

  a_Index = VS_NtxDict()
  FOR n_Cntr = 1 TO LEN(a_Index)
     QOut( n_Cntr, a_Index[n_Cntr,DBF_NAME], a_Index[n_Cntr,NTX_NAME] )
  NEXT n_Cntr
  ...

Usage:      

  VS_NtxDict() is primarily used in debugging and has very little other
  value.

See Also: VS_PrintNtx()
This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson