|
|
Question : blinking label?
|
|
Is there a way to make the text in a label BLINK?
I want to turn the blinking on and off.
|
Answer : blinking label?
|
|
You would have to set the timer property for the time interval between blinks and then use a statement similar to:
If lblName.Visible = true then lblName.visible = false Else lblName.Visible = true End If
gemost
|
|
|
|
|