export ascii

Howie howiewz at beonthenet.com
Wed Apr 13 12:47:13 PDT 2005


----- Original Message ----- 
From: "Enrique Arredondo" <henry at vegena.net>
To: <filepro-list at lists.celestial.com>
Sent: Wednesday, April 13, 2005 3:41 PM
Subject: export ascii


| Hi ,
|
| What is the procedure to make export ascii write several times into the
| ascii file within the same record ?
|
| that is :
|
| export ascii tot=("file.txt") r=\n
|
| then :    tot(1)="bla bla bla"   ' first line I want to be created
|
| then :    tot(1)="THIS IS a SECOND LINE"
|
| then :    ......etc
|
| Should I do  : goto export line or should I do a "write" between lines ?
|
| Thanks
| _______________________________________________


Put the export ascii command in a subroutine and then call it before the
tot(1)= lines.

IE:

    call exp
    tot(1)= ...
    call exp
    tot(1)= ...
    end
exp export ascii tot=...
    return


Howie




More information about the Filepro-list mailing list