private void button2_Click(object sender, EventArgs e) { EntregaOrdenes Ordenes = new EntregaOrdenes(); Ordenes.PopulateContacts(); Ordenes.ShowDialog(this); }
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) { DataGridViewLinkCell cell = (DataGridViewLinkCell)dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex]; if (cell.Value.ToString() == "Ver") // Si se selecciona el hipervinculo "confirmar" { EvolutivoPediatria Evolutivo = new EvolutivoPediatria(); Evolutivo.Data(new ClaseEnfermeria { Antecedentes = dataGridView1.Rows[e.RowIndex].Cells[17].Value.ToString(), Patologia = dataGridView1.Rows[e.RowIndex].Cells[18].Value.ToString(), Observacion = dataGridView1.Rows[e.RowIndex].Cells[16].Value.ToString(), }); Evolutivo.HideButton(); Evolutivo.ShowDialog(this); } else if (cell.Value.ToString() == "Productos") // Si se selecciona el hipervinculo "confirmar" { EntregaOrdenes VerOrdenes = new EntregaOrdenes(); VerOrdenes.GetHistorial(new DataAlmacen { IdNMB = dataGridView1.Rows[e.RowIndex].Cells[23].Value.ToString(), Fecha = (DateTime)dataGridView1.Rows[e.RowIndex].Cells[0].Value, }); VerOrdenes.ShowDialog(this); } }
private void dataGridHistorial_CellContentClick(object sender, DataGridViewCellEventArgs e) { DataGridViewLinkCell cell = (DataGridViewLinkCell)dataGridHistorial.Rows[e.RowIndex].Cells[e.ColumnIndex]; if (cell.Value.ToString() == "Ver") // Si se selecciona el hipervinculo "confirmar" { EntregaOrdenes VerOrdenes = new EntregaOrdenes(); VerOrdenes.GetHistorial(new DataAlmacen { IdNMB = TxtID.Text, Fecha = (DateTime)dataGridHistorial.Rows[e.RowIndex].Cells[1].Value, }); VerOrdenes.ShowDialog(this); } }