wanna make a blinking label or object?..?
with vb, its so easy....here is the way:
suppose object label1 will blinking, step:
1. Put label1 t the form, fill its caption with any title
2. Put Timer to the form, set its properties: Enabled=true, interval=100 (it means 100 millisecond)
3. Goto code editor by doubleclick Timer, write this code:
private sub Timer1_Timer()
label1.visible=not label1.visible 'this will blink label1 each 100ms
end sub
4. Finish...Run it!....
More timer programming in vb...try this...
No comments:
Post a Comment