Example : BaseForm
public partial class frmBaseListEdit : DevExpress.XtraEditors.XtraForm
{
public string kod = "";
public frmBaseListEdit(string _kod)
{
kod = _kod;
InitializeComponent();
}
}
Example : Other form
}
Example : Other form
public partial class frmuserform : Unipa.BaseForms.Forms.frmBaseListEdit
{
public frmuserform()
{
InitializeComponent();
}
}
Error is :Error1'frmBaseListEdit' does not contain a constructor that takes '0' arguments
I must send parameters again but how?
Error is :Error1'frmBaseListEdit' does not contain a constructor that takes '0' arguments
I must send parameters again but how?
1 Reply
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Sep 3, 2012, 8:34 AM