On Tuesday 22 November 2011 08.38:54 wahono sri wrote:
> How to print extended ASCII, for example #196. I use :
> tstringdisp1.value:= 'Current
> Asset'+c_linefeed+stringfromchar(#196,10)+c_linefeed+'Current
> Liabilities';
> 
> My purpose is print horizontal line, but it shown '????????????????'.
> 
Use Unicode code points:
"
 tstringdisp1.value:= 'Current Asset'+c_linefeed+
    stringfromchar(msechar(#$2500),10)+c_linefeed+'Current Liabilities
"
http://unicode.org/charts/PDF/U2500.pdf

Martin
------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to