In the Mike Williams and Henry "Radial Text" supplied code that
I've been tweaking, the following code allows me to place multiple
lines of radial text on the screen spaced .75" vertically from each
other. I first load a list box with the serial numbers and the read
back the list to the screen print.
This works perfectly.
For intCount = 0 To lstSerialNumbers.ListCount - 1
CircleText Me, 1.7, Ydim, txt_Radius_Hidden / 32, "SN" &
lstSerialNumbers.List(intCount)
Ydim = Ydim + 0.75
Next
I now want to send this same output to the printer.
The below code sends each serial number to the printer as separate
requests.
I want to group the serial numbers one under the other and send it to
the printer as a group.
I am printing to a 100'x 4" roll of stencil paper on a 24 pin dot
matrix printer so length is not an issue. The printer feeds forward for
tear-off after each print request.
For intCount = 0 To lstSerialNumbers.ListCount - 1
CircleText Printer, sMarginX, sMarginY, txt_Radius_Hidden / 32,
"SN" & lstSerialNumbers.List(intCount)
sMarginY = sMarginY + 0.75
Next
The output would look something like this only each serial number is
arced.
SN050136050001
SN050136050002
SN050136050003
SN050136050004
Thanks for any help,
RICK