
Clarion 2.1 (Dos) printing
Quote:
> 1/12/2000
> We are using Clarion for Dos version 2.1 and would like to know if it
> is possible to print a bit map image on a report.
> We want to store a signature in a file and then use the image to print
> directly on the check as it is printed.
this *might* help
In a job I was in a few years ago (Till Dec '94) we had Clarion 2.1 programs
which printed lots of statements to various kinds of statement paper. To
save having to change the paper all the time here is what we did:
Designed the statement paper in a word processing package - print the
statement to a file.
Using a hex editor (like Cedt) remove all controls in the file which makes
the page eject from the printer. (this took LOTS of time)
Save the file.
In the clarion program when printing a statement send the file to the
printer as an overlay, using printer control codes, then print the
statement, then remove the overlay.
Of course, if we were running the monthly statement run (approx. 2000
statements at a go) we only loaded the overlay once.
It took a while to develop this solution, and was specific to the command
set of the printer, but it worked and worked well.
HTH
Karl