Exemple #1
0
        private void buttonExport_Click(object sender, EventArgs e)
        {
            if (this.fileListBox.SelectedValue == null)
            {
                return;
            }

            this.sCurrentPageKey = this.fileListBox.SelectedValue.ToString();

            if (this.sCurrentPageKey == "")
            {
                return;
            }

            LogFileManager.ExportFile(this.sCurrentPageKey);
        }