Beispiel #1
0
        private void SetSourceDireBtn_Click(object sender, EventArgs e)
        {
            bool chk = true;

            if (SourceDirBrowserDialog.ShowDialog() == DialogResult.OK)
            {
                //SourceDirBrowserDialog.ShowDialog();
                sourcePath = SourceDirBrowserDialog.SelectedPath;
                chk        = CheckSourceDirectory(sourcePath);
            }
            SourceTxtBox.Text = SourceDirBrowserDialog.SelectedPath;
        }
Beispiel #2
0
 private void SetSourceDireBtn_Click_1(object sender, EventArgs e)
 {
     SourceDirBrowserDialog.ShowDialog();
     SourceTxtBox.Text = SourceDirBrowserDialog.SelectedPath;
     sourcePath        = SourceDirBrowserDialog.SelectedPath;
 }