Page 1 of 1
change language and form caption?
Posted: Mon Aug 23, 2004 9:59 am
by 9523677
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 ...
Posted: Tue Aug 24, 2004 4:23 pm
by Chris
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