//TERMINA CODIGO DE PRUEBA
        private void buttonEditar_Click(object sender, EventArgs e)
        {
            int r = dataGridRepuesto.CurrentCell.RowIndex;

            frmAgregarEditarRepuestoUnico faer = new frmAgregarEditarRepuestoUnico(Convert.ToInt32(dataGridRepuesto.Rows[r].Cells["idRepuesto"].Value));
            faer.actualizarDataGridEvento += new frmAgregarEditarRepuestoUnico.actualizarDataGrid(llenarDataGrid);
            faer.MdiParent = this.MdiParent;
            faer.Show();
        }
 private void button1_Click(object sender, EventArgs e)
 {
     if (this.dataGridRepuesto.Rows[this.dataGridRepuesto.CurrentCell.RowIndex].Cells["idRepuesto"].Value != null)
     {
         frmAgregarEditarRepuestoUnico faer = new frmAgregarEditarRepuestoUnico(Convert.ToInt32(dataGridRepuesto.Rows[this.dataGridRepuesto.CurrentCell.RowIndex].Cells["idRepuesto"].Value));
         faer.actualizarDataGridEvento += new frmAgregarEditarRepuestoUnico.actualizarDataGrid(llenarListBox);
         faer.MdiParent = this.MdiParent;
         faer.Show();
         this.flagDataGrid = true;
     }
 }