Part11 수정중..

master
DESKTOP-S459P9R\LSJ 2025-10-20 15:21:29 +09:00
parent 27beca393c
commit d8d4619805
3 changed files with 2 additions and 5 deletions

Binary file not shown.

View File

@ -28,8 +28,6 @@ namespace INT63DC_2C
FormCalibration, FormCalibration,
FormEquipmentTest, FormEquipmentTest,
FormIOTest, FormIOTest,
FormDataBackup,
FormDataBackup_Part11,
FormTimeSetting, FormTimeSetting,
FormInformation, FormInformation,
FormFactory, FormFactory,
@ -40,6 +38,7 @@ namespace INT63DC_2C
FormMotorSetting, FormMotorSetting,
FormUserGroupEditor, FormUserGroupEditor,
FormDataViewer, FormDataViewer,
FormDataBackup,
}; };
public enum FormMainDisplayStore public enum FormMainDisplayStore

View File

@ -230,7 +230,6 @@ namespace INT63DC_2C.Forms
this.ChildFormCalibration = new FormCalibration(this); this.ChildFormCalibration = new FormCalibration(this);
this.ChildFormEquipmentTest = new FormEquipmentTest(this); this.ChildFormEquipmentTest = new FormEquipmentTest(this);
this.ChildFormIOTest = new FormIOTest(this); this.ChildFormIOTest = new FormIOTest(this);
this.ChildFormDataBackup = new FormDataBackup(this);
this.ChildFormTimeSetting = new FormTimeSetting(this); this.ChildFormTimeSetting = new FormTimeSetting(this);
this.ChildFormInformation = new FormInformation(this); this.ChildFormInformation = new FormInformation(this);
this.ChildFormFactoryInitialize = new FormFactoryInitialize(this); this.ChildFormFactoryInitialize = new FormFactoryInitialize(this);
@ -240,7 +239,7 @@ namespace INT63DC_2C.Forms
this.ChildFormOptionSetting = new FormOptionSetting(this); this.ChildFormOptionSetting = new FormOptionSetting(this);
this.ChildFormMotorSetting = new FormMotorSetting(this); this.ChildFormMotorSetting = new FormMotorSetting(this);
this.ChildFormUserGroupEditor = new FormUserGroupEditor(this); this.ChildFormUserGroupEditor = new FormUserGroupEditor(this);
this.ChildFormUserGroupEditor = new FormUserGroupEditor(this); this.ChildFormDataViewer = new FormDataViewer(this);
if (this.SystemConfig.IsOptPart11 == true) if (this.SystemConfig.IsOptPart11 == true)
this.ChildFormDataBackup_Part11 = new FormDataBackup_Part11(this); this.ChildFormDataBackup_Part11 = new FormDataBackup_Part11(this);
else else
@ -256,7 +255,6 @@ namespace INT63DC_2C.Forms
this.smartForm.AddChildForm(this.ChildFormCalibration); this.smartForm.AddChildForm(this.ChildFormCalibration);
this.smartForm.AddChildForm(this.ChildFormEquipmentTest); this.smartForm.AddChildForm(this.ChildFormEquipmentTest);
this.smartForm.AddChildForm(this.ChildFormIOTest); this.smartForm.AddChildForm(this.ChildFormIOTest);
this.smartForm.AddChildForm(this.ChildFormDataBackup);
this.smartForm.AddChildForm(this.ChildFormTimeSetting); this.smartForm.AddChildForm(this.ChildFormTimeSetting);
this.smartForm.AddChildForm(this.ChildFormInformation); this.smartForm.AddChildForm(this.ChildFormInformation);
this.smartForm.AddChildForm(this.ChildFormFactoryInitialize); this.smartForm.AddChildForm(this.ChildFormFactoryInitialize);