SeriesEditor issue
Posted: Thu Jul 15, 2010 12:54 pm
Hi,
I want to show the editor for one series by this code:
Unfortunately, the format page is empty:
Other tab pages seem to work.
I figured out that this code works:
But why does the first code not work?
Uli
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
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
Uli