Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Advantage CA-Clipper Guide v6.11 - ax_tableencrypted() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 AX_TableEncrypted()
 Determines if current table is encrypted
------------------------------------------------------------------------------

 Syntax

     AX_TableEncrypted() -> logical

 Returns

     Returns a logical .T. if the current table is entirely encrypted.
     Returns .F. if the current table is not entirely encrypted.

 Description

     This function allows you to determine whether the current
     table was entirely encrypted (via AX_DBFEncrypt()) or not.

 Example

     LOCAL lType

     USE test VIA "DBFCDXAX"

     ? "The table is "

     // Find out if the table was entirely encrypted via AX_DBFEncrypt()
     lType := AX_TableEncrypted()
     IF ( lType )
        ?? "encrypted"
     ELSE
        ?? "not encrypted"
     ENDIF


See Also: AX_DBFEncrypt() AX_DBFDecrypt() AX_RecordEncrypted()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson