C2015-022 Separate Windows Upgrade – enable checkbox to open procedure sets in separate windows
This commit is contained in:
parent
5d86f45806
commit
4b3fd3a702
797
PROMS/VEPROMS User Interface/frmSysOptions.Designer.cs
generated
797
PROMS/VEPROMS User Interface/frmSysOptions.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@ -17,6 +17,13 @@ namespace VEPROMS
|
|||||||
public partial class frmSysOptions : DevComponents.DotNetBar.Office2007Form
|
public partial class frmSysOptions : DevComponents.DotNetBar.Office2007Form
|
||||||
{
|
{
|
||||||
bool _initializing;
|
bool _initializing;
|
||||||
|
private bool _CanChangeSeparateWindowsSetting = true;
|
||||||
|
|
||||||
|
public bool CanChangeSeparateWindowsSetting
|
||||||
|
{
|
||||||
|
get { return _CanChangeSeparateWindowsSetting; }
|
||||||
|
set { _CanChangeSeparateWindowsSetting = value; }
|
||||||
|
}
|
||||||
public frmSysOptions()
|
public frmSysOptions()
|
||||||
{
|
{
|
||||||
_initializing = true;
|
_initializing = true;
|
||||||
@ -25,7 +32,6 @@ namespace VEPROMS
|
|||||||
SaveStartingSettings();
|
SaveStartingSettings();
|
||||||
cbPropGrid.Visible = VlnSettings.DebugMode;
|
cbPropGrid.Visible = VlnSettings.DebugMode;
|
||||||
btnGeneral.PerformClick();
|
btnGeneral.PerformClick();
|
||||||
groupPanel9.Visible = false;// Don't allow Separate Windows
|
|
||||||
_initializing = false;
|
_initializing = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -227,6 +233,7 @@ namespace VEPROMS
|
|||||||
ClearAllCheckedButtons();
|
ClearAllCheckedButtons();
|
||||||
tcSysOpts.SelectedTab = tiIntrFaceStngs;
|
tcSysOpts.SelectedTab = tiIntrFaceStngs;
|
||||||
btnIntrFaceStngs.Checked = true;
|
btnIntrFaceStngs.Checked = true;
|
||||||
|
gpSeparateWindows.Enabled = CanChangeSeparateWindowsSetting; //Separate Windows only if one or less procedure sets open
|
||||||
}
|
}
|
||||||
private void cbStepTypeToolTip_CheckedChanged(object sender, EventArgs e)
|
private void cbStepTypeToolTip_CheckedChanged(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user