Results 1 to 2 of 2

Thread: quick question

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Aug 2002
    Posts
    179

    quick question

    hi
    hould should i make a text blink in vb6
    help please

  2. #2
    Member
    Join Date
    Apr 2002
    Location
    QLD, AUS
    Posts
    50
    VB Code:
    1. Private Sub Form_Load()
    2.     Label1.Caption = "NAVI's TEXT"
    3.     With Timer1
    4.         .Interval = 500
    5.         .Enabled = True
    6.     End With
    7. End Sub
    8.  
    9. Private Sub Timer1_Timer()
    10.     Label1.Visible = Not Label1.Visible
    11. End Sub

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width