Ive Been trying to make a better looking GUI with the DevComponentsDotNetBar2.dll and i keep geting this error when i try to Debug it... http://i41.tinypic.com/3013doy.jpg Please help its really anoying me.
How to make a label flash different colours in VB 2008. Coded by K ii 3 R Zz. Insert 2 Timers and 1 label. change timer1's interval to 50 and set it as enabled and timer2's interval to 100 and set it as enabled Make the labels Forecolor to Black <----- Very Important! Now Double Click Timer1 And Type In This Code: If Label1.ForeColor = Color.Black Then
Label1.ForeColor = Color.Blue
ElseIf Label1.ForeColor = Color.Blue Then
Label1.ForeColor = Color.Red
ElseIf Label1.ForeColor = Color.Red Then
Label1.ForeColor = Color.Green
ElseIf Label1.ForeColor = Color.Green Then
Label1.ForeColor = Color.Yellow
ElseIf Label1.ForeColor = Color.Yellow Then
Label1.ForeColor = Color.Black
End If Now Double Click Timer2 And Type In This Code: if Label1.Visible = True Then
Label1.Visible = False
ElseIf Label1.Visible = False Then
Label1.Visible = True
End If Hope You Enjoy!