Esempio n. 1
0
 private void buttonSend1_Click(object sender, EventArgs e)
 {
     EchoClient.SendData(1);
 }
Esempio n. 2
0
 private void buttonSendCount_Click(object sender, EventArgs e)
 {
     EchoClient.SendData(Convert.ToInt32(textBoxSendCount.Text));
 }
Esempio n. 3
0
 private void timerSendData_Tick(object sender, EventArgs e)
 {
     EchoClient.SendData(Convert.ToInt32(textBoxSendCount.Text));
 }