private void sQLforMyabudhabinetToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (dlgSelectDBs.ShowDialog() != System.Windows.Forms.DialogResult.OK)
            {
                this.Log("Please select one or more files...");
                return;
            }

            var mFileInfo = new FileInfo(dlgSelectDBs.FileNames[0]);

            dlgSaveFile.FileName = mFileInfo.DirectoryName + "\\myabudhabi.net.sql";
            dlgSaveFile.Title    = "Please select output filename";
            dlgSaveFile.Filter   = "SQL file|*.sql";
            if (dlgSaveFile.ShowDialog() != System.Windows.Forms.DialogResult.OK)
            {
                this.Log("Please select an output filename");
                return;
            }
            try
            {
                ExtFunctions.ExportMultipleToMyAbuDhabiNet(this, dlgSelectDBs.FileNames, dlgSaveFile.FileName);
                Log("Operation completed");
            }
            catch (Exception ex)
            {
                Log("Operation aborted: " + ex.Message);
            }
        }