private void NObutton_Click(object sender, EventArgs e)
 {
     if (MessageBox.Show("Seguro que no desea enviar nada?", "Reporte error de datos", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) == DialogResult.OK)
     {
         this.Close();
         ReporteDatos regresar = new ReporteDatos();
         regresar.ShowDialog();
     }
 }
 private void OKbutton_Click(object sender, EventArgs e)
 {
     if (textBox1.Text != "")
     {
         MessageBox.Show("Reporte enviado.", "Reporte error de datos", MessageBoxButtons.OK, MessageBoxIcon.Information);
         this.Close();
         ReporteDatos regresar = new ReporteDatos();
         regresar.ShowDialog();
     }
     else
     {
         if(MessageBox.Show("Seguro que no desea enviar nada?", "Reporte error de datos", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) == DialogResult.OK)
         {
             this.Close();
             ReporteDatos regresar = new ReporteDatos();
             regresar.ShowDialog();
         }
     }
 }