jatin_sanghi
7th May 2007, 09:54
Hi all,

It is possible to print multiple fields info in a single barcode with each field being seperated by a TAB.

field1TABfield2 ---> Barcode

Actually, my intension to do so is to get a functionality where as the first field is input in the active baan form, the cursor moves to the next field and prints the second field.

Also, I want to know the control character for TAB key, if i need to do something like appending TAB to each field before printing its barcode.

fieldTAB ---> Barcode

Please suggest can this be done and how?

regards,

Jatin Sanghi

bdittmar
7th May 2007, 10:12
Hi all,

It is possible to print multiple fields info in a single barcode with each field being seperated by a TAB.

field1TABfield2 ---> Barcode

Actually, my intension to do so is to get a functionality where as the first field is input in the active baan form, the cursor moves to the next field and prints the second field.

Also, I want to know the control character for TAB key, if i need to do something like appending TAB to each field before printing its barcode.

fieldTAB ---> Barcode

Please suggest can this be done and how?

regards,

Jatin Sanghi

Barcodevariable = field.value1&chr$(9)&field.value2


Regards

jatin_sanghi
8th May 2007, 04:02
Hi bdittmar,

Thanx for the reply..I hope this will work..I'll update if there are any issues.

regards,

Jatin

en@frrom
8th May 2007, 09:48
In case your field values are strings, you might have to strip them first, so:
Barcodevariable = strip$(shiftl$(field.value1))&chr$(9)&strip$(shiftl$(field.value2)) will do for sure...

Regards,
Eli Nager