private void button1_Click(object sender, EventArgs e) { try { string idformatosillas = dataGridView1.SelectedRows[0].Cells[0].Value.ToString(); ReporteSillasR ver = new ReporteSillasR(idformatosillas); ver.MdiParent = Sistema_Caritas.Bienvenida.ActiveForm; ver.Show(); } catch { MessageBox.Show("Error al seleccionar los datos", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }