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 ..."'
- getactiveENTRY '"entry"'
- if (result=="1") then do
- setscrtitle '"Rendering..."'
- call writeln('temp',entry.date.day||"-"||entry.date.mon||"-"||entry.date.year||" "||entry.customer||" "||entry.remark||" "||entry.In||" "||entry.out)
- end
- Call Close('temp')
- end
-
- exit 0
-
-