change language and form caption?

TeeChart for ActiveX, COM and ASP
Post Reply
change language?
Newbie
Newbie
Posts: 1
Joined: Fri Aug 20, 2004 4:00 am

change language and form caption?

Post by change language? » Mon Aug 23, 2004 9:59 am

How can i change the language to german from the print-preview form?
Can i also change the dialog caption 'teechart print preview'?
Thank you for help ...

Christopher
Site Admin
Site Admin
Posts: 1349
Joined: Thu Jan 01, 1970 12:00 am
Location: Riudellots de la Selva, Catalonia
Contact:

Post by Christopher » Tue Aug 24, 2004 4:23 pm

Hi --
How can i change the language to german from the print-preview form?
I'm not sure this is possible ... are you talking about changing the language of the Chart Editor?
Can i also change the dialog caption 'teechart print preview'?


Try using the ITeePreviewer component, e.g.

Code: Select all

Private Sub Command1_Click()
TeePreviewer1.Chart = TChart1
With TeePreviewer1
    .PreviewTitle = "My Title"
    .ShowPreview
End With
End Sub

Private Sub Form_Load()
With TChart1
    .AddSeries scLine
    .Series(0).FillSampleValues 20
End With
End Sub
Thank you!

Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/

Post Reply