Hey,
I created a report. The report has special pageformat. Normaly the printer used by pageformat A4 and now for the special report I need an User-defined pageformat.
How can I give the printer in the Navision-Code the ESC-sequence.
Thanks for all comments.
Ciao
buble
0
Comments
in a Report you could insert a new header, with one Text Box, wich incl. the ESC Sequence.
The Textformat MUST be Courier Font size 12.
The printer will use this text as Sequence and wont print it. You should define the Haeder so, that only on these Workstations the Header will be printed, bevause other printers will print these Sequence as normal text.
i hope this will help you, and please be sorry for my bad english.
Greetings
Ronnie
Declare a text variable pchar
In the code you must enter the Ascii-Code in Decimal for each character like shown:
pchar[1] := 27;
pchar[2] := 15;
If you print out this variable the ascii-codes will be sent.