Beispiel #1
0
        private void toolStripButton1_Click(object sender, EventArgs e)
        {
            _rMedidorCanalSeleccionado = _medidorSeleccionado.GetNuevoRMedidorCanal();
            FormRMedidorCanal fMedidorCanal = new FormRMedidorCanal();

            fMedidorCanal.Editar(_rMedidorCanalSeleccionado);
        }
Beispiel #2
0
 private void _btnEditar_Click(object sender, EventArgs e)
 {
     if (_rMedidorCanalSeleccionado != null)
     {
         FormRMedidorCanal fMedidorCanal = new FormRMedidorCanal();
         fMedidorCanal.Editar(_rMedidorCanalSeleccionado);
     }
 }
Beispiel #3
0
        private void _btnEditarMagnitud_Click(object sender, EventArgs e)
        {
            FormRMedidorCanal f = new FormRMedidorCanal();

            if (f.Editar(_rPtoMedFtoDetalle))
            {
                VisualizarMagnitudes();
            }
        }
Beispiel #4
0
        private void _btnAdicionarMagnitud_Click(object sender, EventArgs e)
        {
            MC_RPuntoMedicionFormatoDetalle r = _rPtoMedFto.GetNuevoRMedidorCanal();
            FormRMedidorCanal f = new FormRMedidorCanal();

            if (f.Editar(r))
            {
                VisualizarMagnitudes();
            }
        }
Beispiel #5
0
        private void _btnAdicionarMagnitud_Click(object sender, EventArgs e)
        {
            RMedidorCanal r = _medidor.GetNuevoRMedidorCanal();

            r.FkCodFormato = _rMedidorFto.PkCodFormato;
            FormRMedidorCanal f = new FormRMedidorCanal();

            if (f.Editar(r))
            {
                VisualizarMagnitudes();
            }
        }