Hi guys, can anybody advise on a simple way to make a label flash on and off. In visual basic it would be something like this:
timer1_timer
if label1.visible = true then
label1.visible = false
else
label1.visible = true
is there a sime c sharp translation for this or any other way to make a label flash on and off.
Thanks