Tabulator in 2DBarCode field
Hello,
i would like to create a special 2DBarcode output like this one:
TwoDBarCode1.Data:='TEST1'+'TEST2';
So far, so good.
But now I would like to add a tabulator between these two strings:
TwoDBarCode1.Data:='TEST1'+ \t +'TEST2';
This example leads to a syntax error.
How can I add a tabulator between these strings?
kind regards,
Johannes
--- posted by geoForum on http://delphi.newswhat.com
i would like to create a special 2DBarcode output like this one:
TwoDBarCode1.Data:='TEST1'+'TEST2';
So far, so good.
But now I would like to add a tabulator between these two strings:
TwoDBarCode1.Data:='TEST1'+ \t +'TEST2';
This example leads to a syntax error.
How can I add a tabulator between these strings?
kind regards,
Johannes
--- posted by geoForum on http://delphi.newswhat.com
This discussion has been closed.
Comments
In order to add non-visible characters to a 2DBarcode you need to use the
hexidecimal representation in your data string. For instance....
TwoDBarCode1.Data := 'TEST1' + #9 + 'Test2';
The Chr() routine can also be used.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com