Example #1
0
 void makeRobotCommandXMLEntrys(String xmlEntry)
 {
     if (textbox_robotCommandData.InvokeRequired)
     {
         makeRobotCommandXMLEntryCallback d = new makeRobotCommandXMLEntryCallback(makeRobotCommandXMLEntrys);
         textbox_robotCommandData.Invoke(d, new object[] { xmlEntry });
     }
     else
     {
         textbox_robotCommandData.Text = xmlEntry;
     }
 }
Example #2
0
 void makeRobotCommandXMLEntrys(String xmlEntry)
 {
     if (textbox_robotCommandData.InvokeRequired)
     {
         makeRobotCommandXMLEntryCallback d = new makeRobotCommandXMLEntryCallback(makeRobotCommandXMLEntrys);
         textbox_robotCommandData.Invoke(d, new object[] { xmlEntry });
     }
     else
     {
         textbox_robotCommandData.Text = xmlEntry;
     }
 }