Re: FPUTS on a Memo by Rush
Rush
Mon Jun 30 16:55:28 CDT 2003
Is it a long string? PUTS() cuts off a (mumble-mumble). Try using the
number of characters parameter:
FPUTS(nHandle, cString, LEN(cString))
or:
FPUTS(nHandle, cString, 64000) && up to 64000 chars will be written
- Rush
"Altman" <BAltman@easy-automation.com> wrote in message
news:eTFvS40PDHA.1148@TK2MSFTNGP11.phx.gbl...
> I am trying to use FPUTS to write out the contents of a memo field to a
text
> file. For some reason it will only display the first 44 characters. Is
> there any way around this? Am I doing something wrong???
>
>
>