Advertisement
Aseron

Untitled

Feb 25th, 2019
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.57 KB | None | 0 0
  1. private async void checkClicked(object sender, EventArgs e)
  2.           {
  3.                if (tasks[0].GetRobTarget().ToString() != null)
  4.                {
  5.  
  6.  
  7.                     while (checkBox1.Checked)
  8.                     {
  9.                          await System.Threading.Tasks.Task.Delay(100);
  10.                          textBox1.Text = tasks[0].GetRobTarget().ToString();
  11.                          
  12.                     }
  13.                }
  14.                else
  15.                {
  16.  
  17.                     textBox1.Text = "Position will be here!";
  18.                }
  19.  
  20.           }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement