home *** CD-ROM | disk | FTP | other *** search
- /*ACash pro Print List normal*/
-
- OPTIONS RESULTS
- address ACASH_REXX
-
- getprtfile
- file=result
-
- if Open('temp',file,'w') then do
- x=1
- Getaccdata '"acc"'
-
- call writeln('temp',"Account : "||acc.nr||"-"||acc.name)
- call writeln('temp',"Startsaldo: "||acc.saldo)
- call writeln('temp',"Remark : "||acc.remark)
-
-
-
- do while x>0
-
- NEXTENTRY '"entry"'
- if (result=="1") then do
- x=1
- call writeln('temp',entry.date.day||"-"||entry.date.mon||"-"||entry.date.year||" "||entry.customer||" "||entry.remark||" "||entry.In||" "||entry.out)
- end
- else do
- x=0
- end
- end
- Call Close('temp')
- end
-
- exit 0
-
-