Hello,
We are using PB 11.5 to move label printing from a DataMax400 label
printer to a Zebra ZM400 label printer. The labels for the DataMax
were written in it's native DPL code. We are not writting the labels
in the native Zebra language ZPL but converting them using datawindows
and printing them on the Zebra. This all is working fine, but now I
need to rotate one preprinted label 180 degrees. I don't want the user
to have to modify the printer setup definition when they print these
labels, it needs to be done progrmatically. Here is our code for
printing the label
//Print the label
ls_retval =
lds_macmark_label.Modify("DataWindow.Print.Paper.Size=255")
ls_retval =
lds_macmark_label.Modify("DataWindow.Print.CustomPage.Width=8125")
ls_retval =
lds_macmark_label.Modify("DataWindow.Print.CustomPage.Length=4500")
li_retval = lds_macmark_label.Print()
Is there a way to do this? Per Zebra help the code that needs to be
sent to the printer is "'^XZ'". I tried PrintSend but that didn't
work. I would like to rotate the direction on the printer, print the
label, then return the printer back to the original direction.
Any help would be appreciated
Larry