Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- NetLib for Clipper, Version 6.0 - ch_ismemo( <cfield> ) http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
CH_ISMEMO( <cField> )


Parameters

<cField>
Field name.


Returns

True if the field is a memo field; otherwise, false.


Description

The Clipper TYPE() and VALTYPE() functions force Clipper to read the 
memo field, causing unnecessary I/O. If all you want is to test the 
field's type, use CH_ISMEMO().


Example

/* DBF structure:
   NAME         C   20
   PHONE        C   15
   SALARY       N   10
   REMARKS      M
                       */
? CH_ISMEMO('PHONE')
.F.

? CH_ISMEMO('REMARKS')
.T.



See Also: CH_VARTYPE()

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