Remove EnhancedLinkedStep

For unlink prompt, remove ‘Cancel’ button (redundant)
This commit is contained in:
Kathy Ruffing 2016-05-19 12:56:07 +00:00
parent 9af6ea60fb
commit 8a43e3d5dc
5 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1431,7 +1431,7 @@ namespace VEPROMS
private bool _EnhNeedToUnlink = false; private bool _EnhNeedToUnlink = false;
private void btnUnlinkDocVersion_Click(object sender, EventArgs e) private void btnUnlinkDocVersion_Click(object sender, EventArgs e)
{ {
if (MessageBox.Show(this, "Are you sure you want to Unlink? Your documents will no longer link to Enhanced. NOTE that this processing occurs when 'OK' button is selected!", "Unlink", MessageBoxButtons.YesNoCancel) == DialogResult.Yes) if (MessageBox.Show(this, "Are you sure you want to Unlink? Your documents will no longer link to Enhanced. NOTE that this processing occurs when 'OK' button is selected!", "Unlink", MessageBoxButtons.YesNo) == DialogResult.Yes)
{ {
_EnhNeedToUnlink = true; // do the unlink when 'OK' button is selected _EnhNeedToUnlink = true; // do the unlink when 'OK' button is selected
} }