void Txt_taxtype_NewEntryNeeded(object sender, string pValue) { if (fstaxtype == null) { fstaxtype = new FTaxtype(); } Parent.Controls.Add(fstaxtype); fstaxtype.Dock = DockStyle.Fill; fstaxtype.Show(); fstaxtype.BringToFront(); fstaxtype.Focus(); fstaxtype.SetAction(BtnEvent.New, null); fstaxtype.SetFocus(); }
void txt_taxtype_NewEntryNeeded(object sender, string pValue) { if (xtaxtype == null) { xtaxtype = new FTaxtype(); xtaxtype.FTaxtype_NeedToRefresh += Taxtype_NeedToRefresh; } this.Parent.Controls.Add(xtaxtype); xtaxtype.Dock = DockStyle.Fill; xtaxtype.Show(); xtaxtype.BringToFront(); xtaxtype.Focus(); xtaxtype.SetAction(BtnEvent.New, null); xtaxtype.SetFocus(); xtaxtype.setname(pValue); }