Did my suggestion helped you?
Main Topics
Browse All TopicsI'm using a Citizen CT-S2000 POS (Point Of Sale) printer from my Delphi code.
I try to send some escape sequences to the printer using the OPOSPosPrinter driver.
It seems, if the sequence contains #0 character, it simply does not work, as the string will be cut there. The PrintNormal function has a WideString parameter for the string, and the OCX has a BSTR variable for that.
Thanks in advance!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Thats not amusing!
Then you have only two possibilities:
a) You have to find another character instead of #0, if possible
b) Write your own parallel output routines e.g. via inpout32.dll
http://logix4u.net/Legacy_
A sample for Delphi
http://sheepdogguides.com/
Business Accounts
Answer for Membership
by: Florian1Posted on 2009-09-17 at 00:52:00ID: 25353630
Did you try the String type instead of WideString?
ki/ String_ (computer_ science)#I mplementat ions
The type WideString is a null (#0) terminated string. That should be the reason why your string ends unwanted if you put a chr(0) into it.
The type string declares a pascal string, that means the first bytes defines the length without a terminator, so you should not have the described problem.
For more details see http://en.wikipedia.org/wi
A good helper to debug such output is to write it into a file first and look with a hex editor what excactly is into it.