C2022-031 Change Default Settting to false for comparison print.

This commit is contained in:
Rich 2022-11-04 17:55:58 +00:00
parent 4fbd003816
commit 7bed151447

View File

@ -380,7 +380,7 @@ namespace VEPROMS
if (!cmpfldr.EndsWith("\\")) cmpfldr += "\\";
cmpfldr += "Compare";
cbxDebug.Visible = Directory.Exists(cmpfldr) || VlnSettings.DebugMode;
cbxDebug.Checked = VlnSettings.DebugMode;
cbxDebug.Checked = false;// C2022-031 VlnSettings.DebugMode;
}
private void DlgPrintProcedure_Load(object sender, EventArgs e)