Link to home
Start Free TrialLog in
Avatar of tomcruisew
tomcruisew

asked on

Blink

How can I blink a character string in VB60 ?

Thanks in advance for any help
Avatar of Erick37
Erick37
Flag of United States of America image

Toggle the .Visible property of a Caption control using a Timer.
ASKER CERTIFIED SOLUTION
Avatar of Caminman
Caminman

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Caminman
Caminman

..and "end if" of course..

if label1.visible = true then
label1.visible = false
else: label1.visible = true
end if

end sub
Sub Timer1_Timer()
    Label1.Visible = Not Label1.Visible
End Sub