Beispiel #1
0
        private void btn_Agregar_Click(object sender, EventArgs e)
        {
            frmSeccionMant frm = new frmSeccionMant(Convert.ToInt64(lbl_id_cliente.Text), 0, run);

            frm.ShowDialog(this);
            Cargar_seccion();
        }
Beispiel #2
0
        private void btn_Agregar_Click(object sender, EventArgs e)
        {
            Cursor = Cursors.WaitCursor;

            frmSeccionMant frm = new frmSeccionMant(Convert.ToInt64(lbl_id_cliente.Text), 0);

            frm.ShowDialog(this);
            Cargar_Seccion();

            Cursor = Cursors.Default;
        }