Bind combobox of Normalform by selecting from Masterform combo
There is combobox1 in MasterForm and combox2 in NormalformNormalForm is deriving from MasterForm
On combobox1selectedIndexchanged event, loading data for combox2
MasterForm.cs
public void combobox1selectedIndexchanged (object sender,event e)
{
NormalForm nf=new NormalForm()
nf.NormalForm_Load(nf, EventArgs.Empty);
}
-----
NormalForm.cs : MasterForm
public void NormalForm_Load(obj sender,events e)
{
//binding combobox
}
Thou at breakpoint in nf in Masterform, I could see combobox datasource value, its not binding inside combo.. What could be the problem