Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Toggle Text on Button (Using thread timers) (See related posts)

// Works on a seperate thread and changes the color of a button if a significant event happens

   1  
   2  void HotShotTick(object obj)
   3  {
   4  if (this.InvokeRequired) { this.Invoke((MethodInvoker)delegate {
   5  this.FillHotshots();
   6  if (this.dsSignificant.HotshotBets.Rows.Count > 0)
   7  {
   8  this.btnHotShotBets.BackColor = Color.Red;
   9  }
  10  else
  11  {
  12  this.btnHotShotBets.BackColor = Color.Green;
  13  }
  14  });
  15  }
  16  

You need to create an account or log in to post comments to this site.


Click here to browse all 5545 code snippets

Related Posts