|
Re: Character mode report with barcode. [message #662512 is a reply to message #662510] |
Thu, 04 May 2017 13:58 |
|
Littlefoot
Messages: 21823 Registered: June 2005 Location: Croatia, Europe
|
Senior Member Account Moderator |
|
|
I've created quite a few barcode fields, none of them in character mode reports. Thinking aloud: barcode = bitmap != character mode. Saying that, I'm not sure whether you can (or can not) create barcode in such a report type.
Anyway: search this forum, we've discussed barcodes previously; you might find something useful.
It is relatively a simple task to create a barcode field: select it in report's query, display it on the screen, select barcode font (such as IDAutomation Code 39) and you'll have it displayed. However, in order to successfully read it with a barcode scanner, you should follow certain rules. For example, I had to enclose numeric values into asterisks (*); otherwise, the result would have been something that looks like a barcode, but you couldn't read it with the scanner.
select '*' || empno || '*' empno_barcode,
ename
from emp
|
|
|
|
Re: Character mode report with barcode. [message #662514 is a reply to message #662512] |
Thu, 04 May 2017 14:58 |
|
jsanquintin
Messages: 20 Registered: July 2014 Location: Santo Domingo Republica D...
|
Junior Member |
|
|
Littlefoot wrote on Thu, 04 May 2017 13:58I've created quite a few barcode fields, none of them in character mode reports. Thinking aloud: barcode = bitmap != character mode. Saying that, I'm not sure whether you can (or can not) create barcode in such a report type.
Anyway: search this forum, we've discussed barcodes previously; you might find something useful.
It is relatively a simple task to create a barcode field: select it in report's query, display it on the screen, select barcode font (such as IDAutomation Code 39) and you'll have it displayed. However, in order to successfully read it with a barcode scanner, you should follow certain rules. For example, I had to enclose numeric values into asterisks (*); otherwise, the result would have been something that looks like a barcode, but you couldn't read it with the scanner.
select '*' || empno || '*' empno_barcode,
ename
from emp
I need print this value in code bar
|
|
|
|
|
|
Re: Character mode report with barcode. [message #662527 is a reply to message #662520] |
Fri, 05 May 2017 03:41 |
cookiemonster
Messages: 13963 Registered: September 2008 Location: Rainy Manchester
|
Senior Member |
|
|
From memory character mode reports print plain text only - they won't do anything notepad can't do - so no bold or italic and certainly no barcodes.
They exist when you need a report that will be printable by old printers that can't do anything other than plain text.
So if you need barcodes you need a normal report.
|
|
|