bonjour ,
j'ai un code qui enregistre un datagrid dans un fichier excel , mais je ne sais pas comment faire pour que la boite de dialogue "enregistrer sous" se montre , parce que mon code crée et enregistre directement quand on clik sur le bouton.
voila le code :
lblMessage.Text = ""; // Export all the details try { // Get the datatable to export DataTable dt = dsSelectionListeDiffere.Tables[0].Copy(); dsSelectionListeDiffere = FrmFonctionPrincipale.getListeDifferesParClient(1); // Export all the details to Excel RKLib.ExportData.Export objExport = new RKLib.ExportData.Export("Win"); objExport.ExportDetails(dt, Export.ExportFormat.Excel, "C:\\EmployeesInfo.xls"); MessageBox.Show("Exporté Avec Succès dans C:\\EmployeesInfo.xls"); } catch(Exception Ex) { MessageBox.Show(Ex.Message); // lblMessage.Text = Ex.Message; } }