Dear experts,
I am inheriting a form in C# using Visual Studio 2008.
The base form constructor is like below
public frmParent(BuyingController
buyingController)
The inheriting form is like below
public frmChild(BuyingController buyingController) : base(buyingController)
And the program is running well. But the (UI) designer at frmChild is complaining below error
"Constructor on type frmParent not found'
What's wrong here?
Thanks & regards.
Start Free Trial