public cMemos obtnum() { cMemos memos = new cMemos(); DataSet dsresultado = servicio.obtmemos(); if (dsresultado.Tables[0].Rows.Count != 0) { memos.nmemo = int.Parse(dsresultado.Tables[0].Rows[0]["nmemo"].ToString()); return(memos); } else { return(memos); } }
public cMemos obtnum() { cMemos memos = new cMemos(); DataSet dsresultado = servicio.obtmemos(); if (dsresultado.Tables[0].Rows.Count != 0) { memos.nmemo = int.Parse(dsresultado.Tables[0].Rows[0]["nmemo"].ToString()); return memos; } else { return memos; } }
public cMemos Buscarmemo(int pnumero) { cMemos memo = new cMemos(); DataSet dsresultado = servicio.Buscarmemo(pnumero); if (dsresultado.Tables[0].Rows.Count != 0) { memo.nmemo = int.Parse(dsresultado.Tables[0].Rows[0]["nmemo"].ToString()); memo.fecha = dsresultado.Tables[0].Rows[0]["fecha"].ToString(); memo.descripcion = dsresultado.Tables[0].Rows[0]["descripcion"].ToString(); memo.remitente = dsresultado.Tables[0].Rows[0]["remitente"].ToString(); memo.destinatario = dsresultado.Tables[0].Rows[0]["destinatario"].ToString(); memo.motivo = dsresultado.Tables[0].Rows[0]["motivo"].ToString(); return memo; } else { return memo; } }
private void btnBuscar_Click(object sender, EventArgs e) { memo = memo.Buscarmemo(int.Parse(textBox1.Text)); if (memo.nmemo == 0) { MessageBox.Show("Número de memo no existe", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { txtdestinatario.Text = memo.destinatario; txtDescripcion.Text = memo.descripcion.ToString(); txtmotivo.Text = memo.motivo; } DateTime dd = DateTime.Now; string fechahoy = dd.ToString("dd/MM/yyyy 0:00:00"); label3.Text = fechahoy; label4.Text = memo.fecha; }
public cMemos Buscarmemo(int pnumero) { cMemos memo = new cMemos(); DataSet dsresultado = servicio.Buscarmemo(pnumero); if (dsresultado.Tables[0].Rows.Count != 0) { memo.nmemo = int.Parse(dsresultado.Tables[0].Rows[0]["nmemo"].ToString()); memo.fecha = dsresultado.Tables[0].Rows[0]["fecha"].ToString(); memo.descripcion = dsresultado.Tables[0].Rows[0]["descripcion"].ToString(); memo.remitente = dsresultado.Tables[0].Rows[0]["remitente"].ToString(); memo.destinatario = dsresultado.Tables[0].Rows[0]["destinatario"].ToString(); memo.motivo = dsresultado.Tables[0].Rows[0]["motivo"].ToString(); return(memo); } else { return(memo); } }
private void btnBuscar_Click(object sender, EventArgs e) { memo = memo.Buscarmemo(int.Parse(textBox1.Text)); if (memo.nmemo==0) { MessageBox.Show("Número de memo no existe", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Information); } else{ txtdestinatario.Text = memo.destinatario; txtDescripcion.Text = memo.descripcion.ToString(); txtmotivo.Text = memo.motivo; } DateTime dd = DateTime.Now; string fechahoy = dd.ToString("dd/MM/yyyy 0:00:00"); label3.Text = fechahoy; label4.Text = memo.fecha; }
public void InsertarEnBaseDatos(cMemos memorando) { servicio.InsertarMemo( memorando.nmemo, memorando.fecha, memorando.descripcion, memorando.remitente, memorando.destinatario, memorando.motivo); }
public void actualizarmemo(cMemos memo) { servicio.ActualizarMemo(memo.descripcion, memo.destinatario, memo.motivo, memo.nmemo); }
public static void insertar(cMemos memorando) { cMemos memo = new cMemos(); memo.InsertarEnBaseDatos(memorando); }
private void btnGuardar_Click(object sender, EventArgs e) { DateTime dd = DateTime.Now; string fechahoy = dd.ToString("dd/MM/yyyy 0:00:00"); label3.Text = fechahoy; label4.Text = memo.fecha; if (string.IsNullOrEmpty(textBox1.Text)) { if (validar() == false) { memo = memo.obtnum(); memo.nmemo = (memo.nmemo) + 1; memo.destinatario = txtdestinatario.Text; memo.descripcion = txtDescripcion.Text; memo.motivo = txtmotivo.Text; memo.fecha = dateTimePicker1.Value.ToString("yyyy/MM/dd"); DialogResult resul = MessageBox.Show("¿Esta seguro de los datos?", "Registrar", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (resul == DialogResult.Yes) { memo.InsertarEnBaseDatos(memo); MessageBox.Show("Se ha insertado con éxito", "Memorando", MessageBoxButtons.OK, MessageBoxIcon.Information); limpiar(); reportemorandoo reporte = new reportemorandoo(); reporte.nmemo = memo.nmemo; reporte.fecha = memo.fecha; reporte.ShowDialog(); //FrmReportmemo objform = new FrmReportmemo(); //objform.nmemo = memo.nmemo; //objform.ShowDialog(); } } else { MessageBox.Show("Todos los campos deben estar llenos", "Error", MessageBoxButtons.OK, MessageBoxIcon.Information); } } else { if (memo.fecha != fechahoy) { MessageBox.Show("El memo que intenta modificar no fue generado el día de hoy", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { dateTimePicker1.Text = memo.fecha.ToString(); if (memo.descripcion != txtDescripcion.Text || memo.destinatario != txtdestinatario.Text || memo.motivo != txtmotivo.Text) { DialogResult resul = MessageBox.Show("¿Desea Cambiar los datos del Memorando?", "Actualizacion", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (resul == DialogResult.Yes) { if (validar() == false) { memo.destinatario = txtdestinatario.Text; memo.descripcion = txtDescripcion.Text; memo.motivo = txtmotivo.Text; memo.actualizarmemo(memo); MessageBox.Show("Se han actualizado los datos", "Actualización", MessageBoxButtons.OK, MessageBoxIcon.Information); limpiar(); reportemorandoo reporte = new reportemorandoo(); reporte.nmemo = memo.nmemo; reporte.fecha = memo.fecha; reporte.ShowDialog(); //FrmReportmemo objform = new FrmReportmemo(); //objform.nmemo = memo.nmemo; //objform.ShowDialog(); } else { MessageBox.Show("Debe llenar los campos", "Actualización", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { txtDescripcion.Text = memo.descripcion; txtdestinatario.Text = memo.destinatario; txtmotivo.Text = memo.motivo; textBox1.Clear(); limpiar(); } } } } }
public void InsertarEnBaseDatos(cMemos memorando) { servicio.InsertarMemo(memorando.nmemo, memorando.fecha, memorando.descripcion, memorando.remitente, memorando.destinatario, memorando.motivo); }
private void btnGuardar_Click(object sender, EventArgs e) { DateTime dd = DateTime.Now; string fechahoy = dd.ToString("dd/MM/yyyy 0:00:00"); label3.Text = fechahoy; label4.Text = memo.fecha; if(string.IsNullOrEmpty(textBox1.Text)) { if (validar() == false) { memo = memo.obtnum(); memo.nmemo = (memo.nmemo) + 1; memo.destinatario = txtdestinatario.Text; memo.descripcion = txtDescripcion.Text; memo.motivo = txtmotivo.Text; memo.fecha = dateTimePicker1.Value.ToString("yyyy/MM/dd"); DialogResult resul = MessageBox.Show("¿Esta seguro de los datos?", "Registrar", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (resul == DialogResult.Yes) { memo.InsertarEnBaseDatos(memo); MessageBox.Show("Se ha insertado con éxito", "Memorando", MessageBoxButtons.OK, MessageBoxIcon.Information); limpiar(); reportemorandoo reporte = new reportemorandoo(); reporte.nmemo = memo.nmemo; reporte.fecha = memo.fecha; reporte.ShowDialog(); //FrmReportmemo objform = new FrmReportmemo(); //objform.nmemo = memo.nmemo; //objform.ShowDialog(); } } else { MessageBox.Show("Todos los campos deben estar llenos", "Error", MessageBoxButtons.OK, MessageBoxIcon.Information); } } else { if (memo.fecha != fechahoy) { MessageBox.Show("El memo que intenta modificar no fue generado el día de hoy", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { dateTimePicker1.Text = memo.fecha.ToString(); if (memo.descripcion != txtDescripcion.Text || memo.destinatario != txtdestinatario.Text || memo.motivo != txtmotivo.Text) { DialogResult resul = MessageBox.Show("¿Desea Cambiar los datos del Memorando?", "Actualizacion", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (resul == DialogResult.Yes) { if (validar() == false) { memo.destinatario = txtdestinatario.Text; memo.descripcion = txtDescripcion.Text; memo.motivo = txtmotivo.Text; memo.actualizarmemo(memo); MessageBox.Show("Se han actualizado los datos", "Actualización", MessageBoxButtons.OK, MessageBoxIcon.Information); limpiar(); reportemorandoo reporte = new reportemorandoo(); reporte.nmemo = memo.nmemo; reporte.fecha = memo.fecha; reporte.ShowDialog(); //FrmReportmemo objform = new FrmReportmemo(); //objform.nmemo = memo.nmemo; //objform.ShowDialog(); } else { MessageBox.Show("Debe llenar los campos", "Actualización", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { txtDescripcion.Text = memo.descripcion; txtdestinatario.Text = memo.destinatario; txtmotivo.Text = memo.motivo; textBox1.Clear(); limpiar(); } } } } }