Click here to Skip to main content
15,891,136 members

Comments by toATwork (Top 39 by date)

toATwork 21-May-13 2:38am View    
If you have the data in a List, you can just call Remove(<item>). In a string array you must create a new array and copy all items (except the removed one) in the new array.
toATwork 21-May-13 2:28am View    
I am sorry, what do you mean by the selection size?
toATwork 15-May-13 11:24am View    
You are welcome. Please accept the solution.
toATwork 15-May-13 10:54am View    
I will post an answer with some explanation
toATwork 15-May-13 10:46am View    
Either call Invalidate() or Refresh() on the control
if (roundButton[1].backgroundColor == System.Drawing.Color.LimeGreen)
{
roundButton[1].backgroundColor = System.Drawing.Color.Red;
roundButton[1].Refresh(); // that should do the trick
}