Hi
I want to change font style of a control , for a short time. for example 2 secounds. I do like :
label1.Font = new Font(label1.Font, label1.Font.Style | FontStyle.Bold);
for(int i=0,i<4000000,i++);
label1.Font = new Font(label1.Font, label1.Font.Style | FontStyle.Regular);
but it doesn't work. what is the problem?