Dcprint question

This forum is for eXpress++ general support.
Post Reply
Message
Author
omni
Posts: 554
Joined: Thu Jan 28, 2010 9:34 am

Dcprint question

#1 Post by omni »

Roger,

We have a user that prints a history report of repairs and for each unit it also includes any images after the unit prints, if any exist. All prints to users default printer.
Some of these images (all pdfs) are landscape.

After any landscape image prints the report changes to landscape for the next unit.

dcprint off printer oprinter
do prtimage with vdtrac1
DCPRINT on size 60,84 FONT '9.Arial' margin 3 TO oPrinter usedefault CANCELENABLE

(If it matters we use pdfprint.exe to print each pdf image)

Any ideas on how to fix this?


Thanks
Fred
Omni

User avatar
rdonnay
Site Admin
Posts: 4813
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Dcprint question

#2 Post by rdonnay »

Any ideas on how to fix this?
How to fix what?
What is the problem?
The eXpress train is coming - and it has more cars.

Cliff Wiernik
Posts: 605
Joined: Thu Jan 28, 2010 9:11 pm
Location: Steven Point, Wisconsin USA
Contact:

Re: Dcprint question

#3 Post by Cliff Wiernik »

It appears that based on the post, reports are printed in portrait mode, then an image is printed in landscape mode and it causes the remaining reports, which should be printed in portrait mode to instead be printed in landscape mode.

User avatar
rdonnay
Site Admin
Posts: 4813
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Dcprint question

#4 Post by rdonnay »

Ok, if that's the problem then it can probably be resolved like this:

Code: Select all

DCPRINT on size 60,84 FONT '9.Arial' margin 3 TO oPrinter usedefault CANCELENABLE ORIENTATION 1
The eXpress train is coming - and it has more cars.

omni
Posts: 554
Joined: Thu Jan 28, 2010 9:34 am

Re: Dcprint question

#5 Post by omni »

I will give that try...

Fred

Post Reply