Make Blink effect for your text.
Make Blink effect for your text.
Rate Make Blink effect for your text.
(1(1 Vote))
'Put this code in the following events and Run the form.
Private Sub Form_Load()
label1.caption="Welcome to vb6"
label1.forecolor=qbcolor(0)
Timer1.interval=1000
End sub
Private Sub Timer1_Timer()
if label1.forecolor=qbcolor(0) then
label1.forecolor=qbcolor(10)
else
label1.forecolor=qbcolor(0)
endif
End sub
Make Blink effect for your text. Comments
No comments yet — be the first to post one!
Post a Comment