M
MikeY
Hi Everyone,
I'm trying to figure out how to close my inherited user control
(myKeyBoard). My Code is as follows for calling my control:
HOST.I_Ctrl_KeyBoard myKeyBoard= new HOST.I_Ctrl_KeyBoard();
myKeyBoard.Location = new System.Drawing.Point(275, 305);
myKeyBoard.Parent = this;
myKeyBoard.BringToFront();
myKeyBoard.Show();
All works fine to get my keyboard up and running. But I can't seem to close
this control from either my control or from the frmOrderScreen.cs. I've also
been trying to accomplish this through delegates, but that seems the wrong
direction. Any suggestions. If I need to pass something back to
frmOrderScreen.cs what way should I be doing this?
Been racking my brain all night, soooo any and all help is appreciated.
Thanks in advance,
MikeY
I'm trying to figure out how to close my inherited user control
(myKeyBoard). My Code is as follows for calling my control:
HOST.I_Ctrl_KeyBoard myKeyBoard= new HOST.I_Ctrl_KeyBoard();
myKeyBoard.Location = new System.Drawing.Point(275, 305);
myKeyBoard.Parent = this;
myKeyBoard.BringToFront();
myKeyBoard.Show();
All works fine to get my keyboard up and running. But I can't seem to close
this control from either my control or from the frmOrderScreen.cs. I've also
been trying to accomplish this through delegates, but that seems the wrong
direction. Any suggestions. If I need to pass something back to
frmOrderScreen.cs what way should I be doing this?
Been racking my brain all night, soooo any and all help is appreciated.
Thanks in advance,
MikeY