Ejemplo n.º 1
0
        void txt_vouchertype_NewEntryNeeded(object sender, string pValue)
        {
            if (fsvouchertype == null)
            {
                fsvouchertype = new FVouchertype();
            }
            Parent.Controls.Add(fsvouchertype);
            fsvouchertype.Dock = DockStyle.Fill;
            fsvouchertype.Show();
            fsvouchertype.BringToFront();
            fsvouchertype.Focus();

            fsvouchertype.SetAction(BtnEvent.New, null);
            fsvouchertype.SetFocus();
        }