M
macap.usenet
Hello,
I´ve a problem which maybe sounds a bit easy, but it is hard do ask
google for the problem.
I have a CheckBoxList and a class derived from this checkboxlist
Let´s say:
ChildCheckBoxList : CheckBoxList
this class has a method
protected override void CreateChildControls()
which calls the base method (e.g. CheckBoxList.CreateChildControls):
base.CreateChildControls();
now I want to make my own CheckBoxList class derived from
ChildCheckBoxList:
OwnChildCheckBoxList : CheckBoxList
where I want to override the CreateChildControls()
but there I want to call the CreateChildControls() method of
CheckBoxList and _not_ of ChildCheckBoxList.
How can I do this?
base.base.CreateChildControls();
does not work.
Regards,
Martin
I´ve a problem which maybe sounds a bit easy, but it is hard do ask
google for the problem.
I have a CheckBoxList and a class derived from this checkboxlist
Let´s say:
ChildCheckBoxList : CheckBoxList
this class has a method
protected override void CreateChildControls()
which calls the base method (e.g. CheckBoxList.CreateChildControls):
base.CreateChildControls();
now I want to make my own CheckBoxList class derived from
ChildCheckBoxList:
OwnChildCheckBoxList : CheckBoxList
where I want to override the CreateChildControls()
but there I want to call the CreateChildControls() method of
CheckBoxList and _not_ of ChildCheckBoxList.
How can I do this?
base.base.CreateChildControls();
does not work.
Regards,
Martin