Disabled the Continuous Action Summary checkbox

This commit is contained in:
John Jenko 2014-06-05 20:37:19 +00:00
parent 1a3ef465bf
commit 316aee183a
2 changed files with 2 additions and 1 deletions

View File

@ -126,6 +126,7 @@ namespace Volian.Controls.Library
this.superTooltipTags.SetSuperTooltip(this.cbCAS, new DevComponents.DotNetBar.SuperTooltipInfo("Continuous Action Summary", "", "Include this in the Continuous Action Summary section", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); this.superTooltipTags.SetSuperTooltip(this.cbCAS, new DevComponents.DotNetBar.SuperTooltipInfo("Continuous Action Summary", "", "Include this in the Continuous Action Summary section", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
this.cbCAS.TabIndex = 1; this.cbCAS.TabIndex = 1;
this.cbCAS.Text = "Continuous Action Summary"; this.cbCAS.Text = "Continuous Action Summary";
this.cbCAS.Enabled = false;
this.cbCAS.CheckedChanged += new System.EventHandler(this.cbCAS_CheckedChanged); this.cbCAS.CheckedChanged += new System.EventHandler(this.cbCAS_CheckedChanged);
// //
// cmbCheckoff // cmbCheckoff

View File

@ -151,7 +151,7 @@ namespace Volian.Controls.Library
cbPageBreak.Enabled = CurItemInfo.IsHigh; cbPageBreak.Enabled = CurItemInfo.IsHigh;
cbPlaceKeeper.Enabled = (((SectionConfig)CurItemInfo.ActiveSection.MyConfig).Section_Placekeeper == "Y"); cbPlaceKeeper.Enabled = (((SectionConfig)CurItemInfo.ActiveSection.MyConfig).Section_Placekeeper == "Y");
cbPlaceKeeperCont.Enabled = (cbPlaceKeeper.Enabled && !CurItemInfo.IsInRNO && !CurItemInfo.IsHigh); cbPlaceKeeperCont.Enabled = (cbPlaceKeeper.Enabled && !CurItemInfo.IsInRNO && !CurItemInfo.IsHigh);
cbCAS.Enabled = true; //cbCAS.Enabled = true;
rbChgBarOff.Enabled = true; rbChgBarOff.Enabled = true;
rbChgBarOn.Enabled = true; rbChgBarOn.Enabled = true;