Export dif multiple lines

Kenneth Brody kenbrody at bestweb.net
Wed Sep 17 10:42:47 PDT 2008


Quoting Richard Hane (Wed, 17 Sep 2008 10:03:23 -0700 (PDT)):

> Is it possible to export a dif file with multiple (2 in this case)   
> lines per filepro record?
>  
> IE. 1st line part nmr, description, qty in stock, etc
> 2nd line skip 3 columns the plant comments, controller notes

Yes.  You can do it the same way that you would export multiple lines to
a text/csv file -- put the EXPROT line in a subroutine.  For example:

     gosub doexp
     out[1] = "first row"
     gosub doexp
     out[1] = "second row"
     ...
   doexp:
     export dif out = ...
     return

-- 
Read the truth behind the movie "Expelled" at <http://www.ExpelledExposed.com>
--
KenBrody at BestWeb dot net        spamtrap: <g8ymh8uf001 at sneakemail.com>
http://www.hvcomputer.com
http://www.fileProPlus.com


More information about the Filepro-list mailing list