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 ...
change language and form caption?
-
- Newbie
- Posts: 1
- Joined: Fri Aug 20, 2004 4:00 am
-
- Site Admin
- Posts: 1349
- Joined: Thu Jan 01, 1970 12:00 am
- Location: Riudellots de la Selva, Catalonia
- Contact:
Hi --
Try using the ITeePreviewer component, e.g.
I'm not sure this is possible ... are you talking about changing the language of the Chart Editor?How can i change the language to german from the print-preview form?
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/
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/