Has anyone tried to concatenate a barcode for the Scan Move form? For example, I would like to concatenate Production Nbr & Operation & Quantity into one bar code. I attempted to modify the Production Ticket with Barcode and attemped these codes for starters:
=[AMProdItem.ProdOrdID]+'<CR>'+[AMProdOper.OperationCD]
=[AMProdItem.ProdOrdID]+'Chr(13)'+[AMProdOper.OperationCD]
=[AMProdItem.ProdOrdID]+'Chr(19)'+[AMProdOper.OperationCD]
=[AMProdItem.ProdOrdID]+’\n’+[AMProdOper.OperationCD]
=[AMProdItem.ProdOrdID]+’\r’+’\n’+[AMProdOper.OperationCD]
I obviously don’t know what I’m doing trying to code the carriage return / pause/break / line feed to make it work with the Scan Move form. The codes above do combine it into one barcode, but the issue is whether I can code something into the barcode that pauses for a second while the Scan Move form moves on to the next prompt.