parent
0c81c7a282
commit
60d2bf6c2e
|
@ -286,7 +286,7 @@ namespace INT63DC_6CH
|
||||||
a6_ServoOff,
|
a6_ServoOff,
|
||||||
};
|
};
|
||||||
|
|
||||||
public enum _30000_Modbus
|
public enum _30000_ModbusAddress
|
||||||
{
|
{
|
||||||
UnderRange_High = 1010,
|
UnderRange_High = 1010,
|
||||||
UnderRange_Low = 1011,
|
UnderRange_Low = 1011,
|
||||||
|
@ -1700,18 +1700,18 @@ namespace INT63DC_6CH
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string WeightString
|
public string WeightString
|
||||||
{
|
{
|
||||||
get
|
//get
|
||||||
{
|
//{
|
||||||
string ret = "";
|
// string ret = "";
|
||||||
|
|
||||||
if (this.Sign == "-")
|
// if (this.Sign == "-")
|
||||||
ret = "-" + this.m_WeightString.Remove(0, 1);
|
// ret = "-" + this.m_WeightString.Remove(1,0);
|
||||||
else
|
// else
|
||||||
ret = this.m_WeightString;
|
// ret = this.m_WeightString;
|
||||||
|
|
||||||
return ret;
|
// return ret;
|
||||||
}
|
//}
|
||||||
//get { return this.m_WeightString; }
|
get { return this.m_WeightString; }
|
||||||
set { this.m_WeightString = value; }
|
set { this.m_WeightString = value; }
|
||||||
}
|
}
|
||||||
public string Sign
|
public string Sign
|
||||||
|
|
|
@ -788,7 +788,7 @@ namespace INT63DC_6CH.Forms
|
||||||
// Modbus 사용시
|
// Modbus 사용시
|
||||||
if (this.ParentForm.SystemConfig.IsModbusUse == true)
|
if (this.ParentForm.SystemConfig.IsModbusUse == true)
|
||||||
{
|
{
|
||||||
this.ParentForm.ModbusInitizlise();
|
this.ParentForm.ModbusInitialize();
|
||||||
|
|
||||||
this.buttonDataSend.Visible = true;
|
this.buttonDataSend.Visible = true;
|
||||||
this.button1LaneSend.Visible = true;
|
this.button1LaneSend.Visible = true;
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue