February 28, 200520 yr We have automated our Label and Certificate printing which will take items from an invoice and print out the appropriate items. What we cannot do is come up with a way to take the quantity shipped and print that number of labels/ certs. Is there a way to take the number in a field and transfer it to a print dialog box? A plug-in perhaps?
February 28, 200520 yr Possibly, but you could just as easily use a global and increment it after each print. Set Field [globalnum; 1] Loop Print Exit Loop If [globalnum = quantityShipped] Set Field [globalnum; globalnum + 1] End Loop
Create an account or sign in to comment