Example #1
0
 protected override void btnModificar_Click(object sender, EventArgs e)
 {
     if (this.dgvDatos.CurrentRow == null)
         return;
     DetallePaqueteria p = new DetallePaqueteria(Util.Entero(this.dgvDatos.CurrentRow.Cells["ProveedorPaqueteriaID"].Value));
     p.ShowDialog();
 }
Example #2
0
        protected override void btnModificar_Click(object sender, EventArgs e)
        {
            if (this.dgvDatos.CurrentRow == null)
            {
                return;
            }
            DetallePaqueteria p = new DetallePaqueteria(Util.Entero(this.dgvDatos.CurrentRow.Cells["ProveedorPaqueteriaID"].Value));

            p.ShowDialog();
        }
Example #3
0
 protected override void btnAgregar_Click(object sender, EventArgs e)
 {
     DetallePaqueteria p = new DetallePaqueteria();
     p.ShowDialog();
 }
Example #4
0
        protected override void btnAgregar_Click(object sender, EventArgs e)
        {
            DetallePaqueteria p = new DetallePaqueteria();

            p.ShowDialog();
        }