Login or Sign Up
Logging in...
Remember me
Log in
Or
Sign Up
Forgot password or user name?
Log in with
Search in titles only
Search in Visual Basic only
Search
Advanced Search
Forums
Product Launch
Updates
Today's Posts
Member List
Calendar
Home
Forum
Topic
Visual Basic
Blinking in VB 6.0
Collapse
X
Collapse
Posts
Latest Activity
Photos
Page
of
1
Filter
Time
All Time
Today
Last Week
Last Month
Show
All
Discussions only
Photos only
Videos only
Links only
Polls only
Events only
Filtered by:
Clear All
new posts
Previous
template
Next
Bremanand
New Member
Join Date:
Jul 2006
Posts:
29
#1
Blinking in VB 6.0
Jul 24 '06, 06:39 AM
Hi i need to blink the lable in my project...Plz get me the solution soon..
Regards,
Bremanand.S
Hemant Pathak
Recognized Expert
New Member
Join Date:
Jul 2006
Posts:
92
#2
Jul 24 '06, 08:47 AM
Hi u can use this code of Blinking Label
dim i as integer
Private sub Timer1_Timer()
if i<16 then i=0
Label1.forcolor =i
i=i+1
end Sub
Comment
Post
Cancel
candice
New Member
Join Date:
Jul 2006
Posts:
11
#3
Jul 24 '06, 09:51 AM
Hi Bremanand,
i think u can try this method
' set timer1 interval as 1000
Private Sub Timer1_Timer()
Label1.Visible = Not Label1.Visible
End Sub
this is the sample way to help u settle that problem. Fast and easy .
Hope can help u . Good luck
Comment
Post
Cancel
KeitoChan
New Member
Join Date:
Mar 2007
Posts:
1
#4
Mar 27 '07, 07:52 PM
Is there any simple way of explaining that. I'm a highschool student taking a a class, having a problem finding a way to make it blink. Sorry for the issue.^^;
Comment
Post
Cancel
Previous
template
Next
Working...
Yes
No
OK
OK
Cancel
👍
👎
☕
Comment