private void dtg_Reportes_CellClick(object sender, DataGridViewCellEventArgs e) { //////////////////// try { if (dtg_Reportes.SelectedCells.Count > 0) { int selectedrowindex = dtg_Reportes.SelectedCells[0].RowIndex; DataGridViewRow selectedRow = dtg_Reportes.Rows[selectedrowindex]; strRutaReference = Convert.ToString(selectedRow.Cells[2].Value); Visualizador vs = new Visualizador(); vs.AbrirReporteCreado(strRutaReference); } }catch (Exception ex) { MessageBox.Show(ex.ToString()); } }
private void brn_generarRpt_Click(object sender, EventArgs e) { Visualizador vs = new Visualizador(); vs.generarReporte(dtReal, rptDocument); }