This commit is contained in:
chi
2025-05-27 16:32:53 +09:00
parent 9f4bec4142
commit ddf0b1907d
9 changed files with 453 additions and 315 deletions

View File

@@ -567,14 +567,16 @@ namespace AGVEmulator
private void button6_Click(object sender, EventArgs e)
{
var target = (byte)nudIDAgv.Value;
var tagno =(uint) nudTagNo.Value;
this.XBE.SendGotoTag(tagno);
this.XBE.SendGotoTag( target, tagno);
}
private void button1_Click(object sender, EventArgs e)
{
var target = (byte)nudIDAgv.Value;
var tagno = (uint)numericUpDown2.Value;
this.XBE.SendCurrentPos(tagno);
this.XBE.SendCurrentPos(target,tagno);
}
private void toolStripButton1_Click(object sender, EventArgs e)