protected void btnActualizar_Click(object sender, EventArgs e) { Int32 codigo; string nombre; double valor; string fecha; Int32 nit; codigo = Convert.ToInt32(txtCodigo.Text); nombre = txtNombre.Text; valor = Convert.ToDouble(txtValor.Text); fecha = txtFechaRegistro.Text; nit = Convert.ToInt32(ddlProveedor.SelectedValue); clsRepuesto oRepuesto = new clsRepuesto(); oRepuesto.codigo = codigo; oRepuesto.nombre = nombre; oRepuesto.valor = valor; oRepuesto.fecha = fecha; oRepuesto.nit = nit; if (oRepuesto.Actualizar()) { LlenarGrid(); lblError.Text = ""; } else { lblError.Text = oRepuesto.error; } oRepuesto = null; }
private void btnGuardar_Click(object sender, EventArgs e) { string msg = this.Validar(); if (msg.Equals(string.Empty)) { clsRepuesto repuesto = new clsRepuesto(tbCodigo.Text, rtbDescripcion.Text, double.Parse(nudPrecioCompra.Value.ToString()), double.Parse(nudPrecioVenta.Value.ToString()), int.Parse(nudStock.Value.ToString())); //Se esta guardando registro nuevo //se esta actualizando registro, por lo tanto no esta disponible btnLimpiar if (btnLimpiar.Visible) { msg = repuesto.Guardar(); } else { repuesto.Id = int.Parse(((DataGridView)hijo.Controls["dgvRepuestos"]).CurrentRow.Cells["Id"].Value.ToString()); repuesto.Actualizar(); btnCancelar.PerformClick(); } if (msg.Equals(string.Empty)) { hijo.dgvRepuestoConfig(); btnCancelar.PerformClick(); } else { MessageBox.Show(msg, "", MessageBoxButtons.OK, MessageBoxIcon.Information); } } else { MessageBox.Show(msg, "", MessageBoxButtons.OK, MessageBoxIcon.Information); } }