Example #1
0
        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;
            }
        }
Example #2
0
        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;
            }
        }
Example #3
0
        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;
            }
        }