hi ineed your help on creating a blinking textbox or label that changes color may be from blue to red.thanx waitin for your response.
blinking textbox in vb
Collapse
X
-
Try using a timer and use code such as...
timer interval = 2000
textbox1.backco lour = red
system.threadin g.thread.sleep( 1000)
textbox1.backco lour = green
system.threadin g.thread.sleep( 1000)
or
timer interval = 1000
if textbox1.backco lour = red then
textbox1.backco lour = blue
else
textbox1.backco lour = red
end if
Comment