예제 #1
0
        private void btnAdd_reg_Click(object sender, EventArgs e)
        {
            this.Close();
            OPD_Registration opdreg = new OPD_Registration();

            opdreg.Show();
        }
예제 #2
0
파일: OPDbill.cs 프로젝트: wink94/FMC-LAB
        private void OPDbill_Load(object sender, EventArgs e)
        {
            txtBill_Date.Text = DateTime.Now.ToLongDateString();
            var OPID = new OPD_Registration();

            OPID.Show(this);

            txtPatient.Text = OPID.PIDvalue;

            OPID.Dispose();

            Token();
            AutoGenerateBID();
        }