The information in this article applies to:
SUMMARYIn Visual FoxPro help the syntax for the TAG() and DESCENDING() commands incorrectly shows the "nTagNumber" and "nIndexNumber" arguments respectively as required when they are actually optional. If you run either of the commands, without any arguments, they return information for the controlling Index of a table that is open in the current work area. MORE INFORMATIONThe text of the TAG() and DESCENDING() functions in the Visual FoxPro Help notes that the syntax is as follows: TAG([CDXFileName,] nTagNumber [, nWorkArea | cTableAlias])The text incorrectly shows the nTagNumber and nIndexNumber arguments, for TAG() and DESCENDING() functions respectively, as required. The syntax should be as follows: TAG([CDXFileName[, nTagNumber [, nWorkArea | cTableAlias]]])The nTagNumber and nIndexNumer arguments are optional. If nTagNumber or nIndexnumber are not specified, then the TAG() and DESCENDING() functions will return information for the controlling Index of the table that is open in the current Work Area. If there is no table open, in the current Work Area or a controlling index is not in place, then TAG() returns an empty string and DESCENDING() returns a False. To test this issue, create and run a program with the following code:
Additional query words:
Keywords : kbdocerr kbDatabase kbVFp300bbug kbVFp500abug kbVFp600bug kbXBase KbDBFDBC |
Last Reviewed: August 19, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |