Hello everyone,
As the title says, here's the question. Can you rotate a data window 90 degrees?
Our problem:
We want to print 2 datawindows one after the other. The first one with normal orientation (portrait).
The second one rotated 90 degrees on an landscape orientation.
Without changing anything in the printer driver.
Questions:
Is it even possible?
How can we achieve it?
How would you handle that if you have this problem?
thank you everyone and have a nice day
greetings Stefan
Code example:
dw_1.dataobject = "dataobject_1"
dw_2.dataobject = "dataobject_2"
...some Code...
dw_1.print() // portrait
dw_2.print() // landscape
...some Code...
long job
job = PrintOpen( )
// Each DataWindow starts printing on a new page.
PrintDataWindow(job, dw_1)
PrintDataWindow(job, dw_2)
PrintDataWindow(job, dw_3)
PrintClose(job)