private void Button_CommentOptions_Click(object sender, EventArgs e)
        {
            FormOptions form = new FormOptions(ConfigPageEmnu.ConfigPage_Comment);

            if (form.ShowDialog() == DialogResult.OK)
            {
                App_Config.load_config();
            }
        }
        private void Button1_CommentOptions_Click(object sender, EventArgs e)
        {
            FormOptions form = new FormOptions(ConfigPageEmnu.ConfigPage_Comment);

            if (form.ShowDialog() == DialogResult.OK)
            {
                App_Config.load_config();
                open_codeFile(comboBox1_FileList.SelectedIndex);
            }
        }
        private void Button_options_Click(object sender, EventArgs e)
        {
            FormOptions form = new FormOptions();

            if (form.ShowDialog() == DialogResult.OK)
            {
                load_config();
                openSelectFolder(comboBox_FilePath.Text);
            }
        }