Label text
Inparent Form
を変更しようとしてChild form
いますが、このエラーが表示されますObject reference not set to an instance of an object.
。どこが間違っていますか? これが私が使用しているコードです
private void btnMedicalClgList_Click(object sender, EventArgs e)
{
this.ParentForm.Controls["lblMenuItem"].Text = "Medical College List";//getting error here
ShowMedicalClgList medifrm = new ShowMedicalClgList();
medifrm.MdiParent = this.ParentForm;
this.Hide();
medifrm.Show();
}