Click here to Skip to main content
16,018,353 members

Comments by mehdi_13 (Top 4 by date)

mehdi_13 3-May-13 4:27am View    
I've already seen these posts but i want use FLASH clock files.
mehdi_13 23-Apr-13 15:36pm View    
I just don't know what is the difference between timer and a regular loop in this case.
mehdi_13 23-Apr-13 15:14pm View    
could you tell me how to use it?
mehdi_13 23-Apr-13 14:40pm View    
I use the following code but it didn't work.

DateTime start = DateTime.Now;
dataGridView1.Rows[0].DefaultCellStyle.BackColor = Color.Black;
TimeSpan interval = DateTime.Now - start;
while (interval.TotalSeconds<5)
{
interval = DateTime.Now - start;
}
dataGridView1.Rows[0].DefaultCellStyle.BackColor = Color.Yellow;