home *** CD-ROM | disk | FTP | other *** search
- /*ACash pro Print Entry normal*/
-
- OPTIONS RESULTS
- address ACASH_REXX
-
- getprtfile
- file=result
-
- if Open('temp',file,'w') then do
- setscrtitle '"Fetching data ..."'
- getreport '"REP"'
- i=0
- do while i<rep.cnt
- call writeln('temp',rep.i)
- i=i+1
- end
- Call Close('temp')
- end
-
- exit 0
-
-