AA2Install.formMain.btnBrowseMigrate_Click C# (CSharp) Method

btnBrowseMigrate_Click() private method

private btnBrowseMigrate_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void btnBrowseMigrate_Click(object sender, EventArgs e)
        {
            FolderBrowserDialog fold = new FolderBrowserDialog();
            fold.Description = @"Locate the Wizzard install folder (where Illusion_Wizzard.exe is)";
            DialogResult result = fold.ShowDialog();
            if (result == DialogResult.OK)
            {
                txtBrowseMigrate.Text = fold.SelectedPath;
            }
        }