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,
FormEquipmentTest,
FormIOTest,
FormDataBackup,
FormDataBackup_Part11,
FormTimeSetting,
FormInformation,
FormFactory,
@ -40,6 +38,7 @@ namespace INT63DC_2C
FormMotorSetting,
FormUserGroupEditor,
FormDataViewer,
FormDataBackup,
};
public enum FormMainDisplayStore

View File

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