예제 #1
0
        private void BtnNuevo_Click(object sender, EventArgs e)
        {
            Presentation.FrmTablas ofrmTablas = new Presentation.FrmTablas();
            ofrmTablas.ShowDialog();

            Refrescar();
        }
예제 #2
0
        private void BtnModificar_Click(object sender, EventArgs e)
        {
            int?Identificacion = GetIdentificacion();

            if (Identificacion != null)
            {
                Presentation.FrmTablas oFrmTablas = new Presentation.FrmTablas(Identificacion);
                oFrmTablas.ShowDialog();

                Refrescar();
            }
        }