/// <summary> /// The btnDownload_Click method /// Makes an excel report with orders information. /// </summary> private void btnDownload_Click(object sender, EventArgs e) { if (reportsBll.downloadReport(this.dataGridView1)) { MessageBox.Show("Se realizo la exportación con éxito", "Éxito", MessageBoxButtons.OK, MessageBoxIcon.Information); } }