> I would like to display a unicode character in a TLabel.  I tried
> Label.Caption := WideStrToString(#9660) but I get a '?' instead of
> the character I am after.  Ideas?

   procedure TForm1.Button3Click(Sender: TObject);
   const w:widestring = #9660;
   begin
     label1.caption:='abc'+w+'def';
   end;

When I do this and display the caption using MSSansSerif
I get a heavy dot below the baseline.   What is #9660 supposed
to convert to?

(If I try this with #9662 or #9663 i get "?"s - i.e. they don't
have single byte equivalents)

-ns




---------------------------------------------------------------------------
    New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED] 
with body of "unsubscribe delphi"
Web Archive at: http://www.mail-archive.com/delphi%40delphi.org.nz/

Reply via email to