If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > General > Chit Chat > blinking--urgent!

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-29-02, 06:17
sinhuei sinhuei is offline
Junior Member
 
Join Date: Sep 2002
Posts: 11
blinking--urgent!

hi there..anyone know how to make a label or text blink?
Reply With Quote
  #2 (permalink)  
Old 09-29-02, 14:04
rnealejr rnealejr is offline
Registered User
 
Join Date: Feb 2002
Posts: 2,232
What language are you using ?
Reply With Quote
  #3 (permalink)  
Old 09-29-02, 15:06
sinhuei sinhuei is offline
Junior Member
 
Join Date: Sep 2002
Posts: 11
Quote:
Originally posted by rnealejr
What language are you using ?
im using vb...ado
Reply With Quote
  #4 (permalink)  
Old 09-29-02, 23:31
rnealejr rnealejr is offline
Registered User
 
Join Date: Feb 2002
Posts: 2,232
You can use the timer control. You can use static variables to set the boolean and use the not keyword to alternate. Let me know if you this is enough or if you need additional assistance.
Reply With Quote
  #5 (permalink)  
Old 09-30-02, 02:10
sinhuei sinhuei is offline
Junior Member
 
Join Date: Sep 2002
Posts: 11
Quote:
Originally posted by rnealejr
You can use the timer control. You can use static variables to set the boolean and use the not keyword to alternate. Let me know if you this is enough or if you need additional assistance.
i dun quite understand. can u pls show me de coding. especially "use the not keyword to alternate".
Reply With Quote
  #6 (permalink)  
Old 09-30-02, 18:30
rnealejr rnealejr is offline
Registered User
 
Join Date: Feb 2002
Posts: 2,232
Static blnSwitch As Boolean
If blnSwitch Then
Label1.ForeColor = vbRed
Else
Label1.ForeColor = vbBlack
End If
blnSwitch = Not blnSwitch
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On