G
Guest
Here is the code in the calling form:
Form frmDetails = new employeeDir.details ();
frmDetails.MdiParent = this.MdiParent;
frmDetails.DisplayForm(1);
Here is the code in detail form:
public void DisplayShow(int EmployeeID)
{
this.label1.Text = EmployeeID.ToString();
}
Somehow the DisplayShow method does not appear in intellisense, what am I
missing?
Form frmDetails = new employeeDir.details ();
frmDetails.MdiParent = this.MdiParent;
frmDetails.DisplayForm(1);
Here is the code in detail form:
public void DisplayShow(int EmployeeID)
{
this.label1.Text = EmployeeID.ToString();
}
Somehow the DisplayShow method does not appear in intellisense, what am I
missing?