Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Guide To Clipper - <b>memowrit()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
MEMOWRIT()


Syntax:     MEMOWRIT(<expC1>, <expC2>)

Purpose:    To write a character string to a specified disk file.

Arguments:  <expC1> is the disk file name.  Note that it must
            include the file extension if there is one and can
            optionally include the path.

            <expC2> is the character string to write to the
            specified file.

Returns:    A logical value.

            MEMOWRIT() returns true (.T.) if the writing operation is
            successful.

Library:    EXTEND.LIB


----------------------------------- Example --------------------------------

   status = MEMOWRIT("Temp.txt", Notes)

   IF status
      RUN Editor Temp.txt
   ELSE
      ? "Write error"
   ENDIF


See Also: HARDCR() MEMOEDIT() MEMOREAD() MEMOTRAN()

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