- Home
·
- Graphics
·
- This peice of code creates a blinking label in two colors...Very simple to create, no API call.
This peice of code creates a blinking label in two colors...Very simple to create, no API call.
This peice of code creates a blinking label in two colors...Very simple to create, no API call.
Rate This peice of code creates a blinking label in two colors...Very simple to create, no API call.
(1(1 Vote))
' Rosemoore Village
' Salangan, San Miguel, Bulaca
' 3011 Philippines
' You need to insert a form, 1 label named label1 and a timer(timer1).
Private Sub Form_Load()
label1.BackColor=vbWhite
timer1.intervak=500
End Sub
Private Sub Timer1_timer()
If Label1.BackColor=vbWhite then
Label1.BackColor=vbRed
else
Label1.BackColor=vbWhite
End If
End Sub
This peice of code creates a blinking label in two colors...Very simple to create, no API call. Comments
No comments yet — be the first to post one!
Post a Comment