void BrowseCStoreFailuresButton_Click(object sender, EventArgs e) { StorageLocationBrowserDialog.SelectedPath = CStoreFailuresTextBox.Text; if (StorageLocationBrowserDialog.ShowDialog( ) == DialogResult.OK) { CStoreFailuresTextBox.Text = StorageLocationBrowserDialog.SelectedPath; AddInsSettings.StoreAddIn.CStoreFailuresPath = StorageLocationBrowserDialog.SelectedPath; } }
void BrowseBackupLocationButton_Click(object sender, EventArgs e) { StorageLocationBrowserDialog.SelectedPath = OverwriteBackupLocationTextBox.Text; if (StorageLocationBrowserDialog.ShowDialog() == DialogResult.OK) { OverwriteBackupLocationTextBox.Text = StorageLocationBrowserDialog.SelectedPath; AddInsSettings.StoreAddIn.OverwriteBackupLocation = StorageLocationBrowserDialog.SelectedPath; } }
void BrowseHangingProtocolLocationButton_Click(object sender, EventArgs e) { StorageLocationBrowserDialog.SelectedPath = HangingProtocolLocationTextBox.Text; if (StorageLocationBrowserDialog.ShowDialog( ) == DialogResult.OK) { HangingProtocolLocationTextBox.Text = StorageLocationBrowserDialog.SelectedPath; AddInsSettings.StoreAddIn.HangingProtocolLocation = StorageLocationBrowserDialog.SelectedPath; } }