Example #1
0
        private void button2_Click(object sender, EventArgs e)
        {
            KundeSøgningsForms opkf = new KundeSøgningsForms();

            if (opkf.ShowDialog() == DialogResult.OK)
            {
                tbt_sellerID.Text = sellerID;
            }
        }
        private void btn_ChooseCustomer_Click(object sender, EventArgs e)
        {
            KundeSøgningsForms opkf = new KundeSøgningsForms();

            if (opkf.ShowDialog() == DialogResult.OK)
            {
                lbl_BuyerId.Text = buyerID;
                btn_Save.Visible = true;
            }
        }