Hello,
how can i have a chart header (TChart1.Header.Text) in, say, Cyrillic? Now all char with ASCII code above 127 are shown as question marks.
nefis
None-english header
Hi nefis,
yes, it can't be seen unless run on a Cyrillic windows system.
yes, it can't be seen unless run on a Cyrillic windows system.
Pep Jorge
http://support.steema.com
http://support.steema.com
-
- Site Admin
- Posts: 1349
- Joined: Thu Jan 01, 1970 12:00 am
- Location: Riudellots de la Selva, Catalonia
- Contact:
Hi ---
Have you tried using ChrW?:
Best regards,
Christopher Ireland
http://support.steema.com
Have you tried using ChrW?:
Code: Select all
Private Sub Form_Load()
With TChart1
.Aspect.View3D = False
.AddSeries scLine
.Series(0).FillSampleValues 20
.Header.Text.Clear
.Header.Text.Add ChrW(199)
End With
End Sub
Christopher Ireland
http://support.steema.com