Page 1 of 1

SeriesEditor issue

Posted: Thu Jul 15, 2010 12:54 pm
by 15655996
Hi,

I want to show the editor for one series by this code:

Code: Select all

    Public Sub EditActiveSeries(ByVal Series As Series)
        Dim ed As New Editors.SeriesEditor
        ed.series = Series
        ed.Text = Series.Title
        ed.ShowDialog()
    End Sub
Unfortunately, the format page is empty:
SerEd.JPG
SerEd.JPG (19.1 KiB) Viewed 3729 times
Other tab pages seem to work.

I figured out that this code works:

Code: Select all

    Public Sub EditActiveSeries(ByVal Series As Series)
        Dim ParentEditor As New ParentEditor 'it's an empty form
        Dim ed As New Editors.SeriesEditor(Series, ParentEditor)
        ParentEditor.Text = Series.Title
        ParentEditor.ShowDialog()
    End Sub
But why does the first code not work?

Uli

Re: SeriesEditor issue

Posted: Fri Jul 16, 2010 11:37 am
by 10050769
Hello Uli,


I could reproduce it and I think that is a bug. I have added it in bug report list with [TF02015034]. We will try to fix it for next maintenances releases of TeeChart .Net.

Thanks,