Exemplo n.º 1
0
Arquivo: Export.cs Projeto: zhna42/TDK
        public void button_export()
        {
            popup.displayBlock("Please wait ...");
            ExportFile ef = new ExportFile();

            ef.settings    = settings;
            ef.filesExport = files.main;
            ef.LoadFiles();
            ef.exportOne(listSelectId);
            popup.displayNan();
        }
Exemplo n.º 2
0
Arquivo: Base.cs Projeto: zhna42/TDK
        public void button_export()
        {
            ExportFile ef = new ExportFile();

            Object objVersion = comboBox_name_categoryExport.SelectedItem;

            if (objVersion != null)
            {
                files[idList].main[listSelectId].category = objVersion.ToString();
            }
            ef.settings    = settings;
            ef.filesExport = files[idList].main;
            ef.LoadFiles();

            ef.exportOne(listSelectId);
        }