@ Ver 8.2.3 by LSJ

- 2024.07.02
 - Ver 8.2.2 Modify
 - Framework : SmartX Framework V3.2.4(update: 2021.01.20)
 - 모터설정
   원점속도,속도,가속도,감속도 '0' 설정 안되도록 수정함
   -> 설정값을 잘못하여 '0' 설정이 되면 "통신 연결상태 확인" 메시지가 표시되어 설정이 안되는 문제가 있음
master V8.2.3
Seonjae 2024-07-04 11:16:23 +09:00
parent 9c56a58e4e
commit 573f02799d
4 changed files with 6 additions and 6 deletions

Binary file not shown.

View File

@ -153,7 +153,7 @@ namespace INT63DC_2C.Forms
} }
private void DefaultSetting() private void DefaultSetting()
{ {
this.labelDisplayVer.Text = "8.2.2"; this.labelDisplayVer.Text = "8.2.3";
this.labelSerialNo.Text = this.ParentForm.SystemConfig.SerialNumber; this.labelSerialNo.Text = this.ParentForm.SystemConfig.SerialNumber;
this.textBoxSerialNo.Location = new Point(395, 225); this.textBoxSerialNo.Location = new Point(395, 225);
this.textBoxSerialNo.Visible = false; this.textBoxSerialNo.Visible = false;

View File

@ -408,7 +408,7 @@ namespace INT63DC_2C.Forms
if (label == null) if (label == null)
return; return;
if (this.ParentForm.smartModbus.IsOpen == false || label.Text.Trim() == "0") if (this.ParentForm.smartModbus.IsOpen == false)
{ {
// 통신 연결상태를 확인하세요 // 통신 연결상태를 확인하세요
DialogFormMessage myMsg = new DialogFormMessage(23, this.ParentForm.SystemConfig.Language); DialogFormMessage myMsg = new DialogFormMessage(23, this.ParentForm.SystemConfig.Language);
@ -443,7 +443,7 @@ namespace INT63DC_2C.Forms
if (myKeyPad.ShowDialog() == DialogResult.OK) if (myKeyPad.ShowDialog() == DialogResult.OK)
{ {
if (myKeyPad.doubleValue < 0 || myKeyPad.doubleValue > 20000) if (myKeyPad.doubleValue < 1 || myKeyPad.doubleValue > 20000)
{ {
// 입력범위를 확인하세요 // 입력범위를 확인하세요
DialogFormMessage myMsg = new DialogFormMessage(1, this.ParentForm.SystemConfig.Language); DialogFormMessage myMsg = new DialogFormMessage(1, this.ParentForm.SystemConfig.Language);
@ -463,7 +463,7 @@ namespace INT63DC_2C.Forms
if (myKeyPad.ShowDialog() == DialogResult.OK) if (myKeyPad.ShowDialog() == DialogResult.OK)
{ {
if (myKeyPad.doubleValue < 0 || myKeyPad.doubleValue > 20000) if (myKeyPad.doubleValue < 1 || myKeyPad.doubleValue > 20000)
{ {
// 입력범위를 확인하세요 // 입력범위를 확인하세요
DialogFormMessage myMsg = new DialogFormMessage(1, this.ParentForm.SystemConfig.Language); DialogFormMessage myMsg = new DialogFormMessage(1, this.ParentForm.SystemConfig.Language);
@ -486,7 +486,7 @@ namespace INT63DC_2C.Forms
if (myKeyPad.ShowDialog() == DialogResult.OK) if (myKeyPad.ShowDialog() == DialogResult.OK)
{ {
if (myKeyPad.doubleValue < 0 || myKeyPad.doubleValue > 10000) if (myKeyPad.doubleValue < 1 || myKeyPad.doubleValue > 10000)
{ {
// 입력범위를 확인하세요 // 입력범위를 확인하세요
DialogFormMessage myMsg = new DialogFormMessage(1, this.ParentForm.SystemConfig.Language); DialogFormMessage myMsg = new DialogFormMessage(1, this.ParentForm.SystemConfig.Language);
@ -506,7 +506,7 @@ namespace INT63DC_2C.Forms
if (myKeyPad.ShowDialog() == DialogResult.OK) if (myKeyPad.ShowDialog() == DialogResult.OK)
{ {
if (myKeyPad.doubleValue < 0 || myKeyPad.doubleValue > 10000) if (myKeyPad.doubleValue < 1 || myKeyPad.doubleValue > 10000)
{ {
// 입력범위를 확인하세요 // 입력범위를 확인하세요
DialogFormMessage myMsg = new DialogFormMessage(1, this.ParentForm.SystemConfig.Language); DialogFormMessage myMsg = new DialogFormMessage(1, this.ParentForm.SystemConfig.Language);

Binary file not shown.