private void NoFilter_Click_1(object sender, EventArgs e)
        {
            this.Close();
            NWC_Assembly_Plugin nWC_Assembly_Plugin = new NWC_Assembly_Plugin();

            nWC_Assembly_Plugin.MainProgram(FolderPathNWCpr, FolderPathNWDpr, FileSize, FileDate);
        }
        public void ApplyFilter_Click(object sender, EventArgs e)
        {
            if (checkBox_File_size.Checked && textBox_File_size.Text == "")
            {
                MessageBox.Show("Enter any value to the field");
                return;
            }

            if (checkBox_File_date.Checked && textBox_File_date.Text == "")
            {
                MessageBox.Show("Enter any value to the field");
                return;
            }

            this.Close();

            NWC_Assembly_Plugin nWC_Assembly_Plugin = new NWC_Assembly_Plugin();

            nWC_Assembly_Plugin.MainProgram(FolderPathNWCpr, FolderPathNWDpr, FileSize, FileDate);
        }