Added new feature to keep Background Document and Deviation Documents in Sync as the user moves through the procedure.

Added manual ping on btnStepRTF.  This is for testing Ping logic when running in debug (visual Studio)
Changed security to allow SetAdministrator to perform some Admin functions.
Support multiple windows by VersionID.
This commit is contained in:
Rich
2015-09-12 15:43:07 +00:00
parent ba94c537cc
commit 8280b4976f
3 changed files with 160 additions and 30 deletions

View File

@@ -59,6 +59,14 @@ namespace VEPROMS
cbTVExpand.Checked = Settings.Default.SaveTreeviewExpanded;
cbPasteNoReturns.Checked = Settings.Default.PasteNoReturns;
cbPastePlainText.Checked = Settings.Default.PastePlainText;
cbEnhancedDocumentSync.Checked = Settings.Default.SyncEnhancedDocuments;
}
private void cbEnhancedDocumentSync_CheckedChanged(object sender, System.EventArgs e)
{
if (!_initializing)
{
Settings.Default.SyncEnhancedDocuments = cbEnhancedDocumentSync.Checked;
}
}
private void cbPastePlainText_CheckedChanged(object sender, EventArgs e)
{