Click here to Skip to main content
16,020,345 members

Comments by sonercelix (Top 6 by date)

sonercelix 11-Feb-16 7:47am View    
phone application in the browser. Asp.Net, Jquery, NodeJS
sonercelix 18-Apr-14 5:57am View    
According to the column in the table boxes excitement. The same table is updated by 30 people. Everyone should see the same colors.
sonercelix 17-Apr-14 12:25pm View    
private void timer1_Tick(object sender, EventArgs e)
{
int x=0; int y=0;
panel1.Controls.Clear();

for (int i = 0; i < 100; i++)
{
Panel btn = new Panel();
btn.Width = 100;
btn.Height = 100;
btn.BackColor = Color.Cyan;
btn.Location = new Point(x, y);
btn.Text = i.ToString();
panel1.Controls.Add(btn);



x = x + 101;

if ((i + 1) % 10 == 0)
{
y = y + 101;
x = 0;
}
}
}
sonercelix 17-Apr-14 12:24pm View    
When the screen flashes every refresh
sonercelix 17-Apr-14 12:23pm View    
http://s1.postimg.org/mjv1vlgqn/soner.png