MEMOWRITE()

From Lianjapedia
Revision as of 09:26, 20 September 2016 by Yvonne.milne (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Purpose

Function to write to an external file from a memo field

Syntax

MEMOWRITE(<filename>, <memofield> | <expC>)

See Also

HTML_TOPLAINTEXT(), MEMOREAD(), MEMLINES(), MEMOLINE(), MEMOTRAN(), MLCOUNT(), MLINE(), SET MEMOWIDTH

Description

The MEMOWRITE() function writes an external text file <filename> from the specified field or character string. The <expC> is a character expression that returns a valid memo field name. MEMOWRITE() returns .T. if the operation was successful.

Example

// To transfer company history notes
use prospect
memowrite(tmpnam() + ".txt", comp_hist)