private void exportFileGDBToMyabudhabinetSQLToolStripMenuItem_Click(object sender, EventArgs e) { dlgSelectFolder.Description = "Please select Onwani FileGDB to export to SQL (previously created with this tool)"; if (dlgSelectFolder.ShowDialog() != System.Windows.Forms.DialogResult.OK) { return; } if (!dlgSelectFolder.SelectedPath.EndsWith(".gdb")) { return; } dlgSaveFile.Title = "Please select where to save the myabudhabi.net SQL file"; dlgSaveFile.Filter = "myabudhabi.net SQL-file|*.sql"; dlgSaveFile.FileName = "myabudhabi.net.sql"; if (dlgSaveFile.ShowDialog() != System.Windows.Forms.DialogResult.OK) { return; } var mExportResult = ExtFunctions.ExportFileGDBToMyAbuDhabiDotNetSQL(this, dlgSelectFolder.SelectedPath, dlgSaveFile.FileName, 25, false); Log("Completed process"); }