I have a form that is hidden, and it loads the subform, and the 2e form should be hidden, and
Please note: I no longer use
ShowInTaskbar = false;
and most of all I can communicate between forms, if I use (hide / apparently), I can not communicate until its visible = true;
this.SetParameterValueCallback += new SetParameterValueDelegate(ShowMain.SetParamValueCallbackFn);
ShowMain.AddItemCallback = new AddItemDelegate(this.AddItemCallbackFn);
Showsub.Hide();
I tried so far
this.Visible = false;
BeginInvoke(new MethodInvoker(delegate
{
Hide();
}));
base.SetVisibleCore(false);
source
share