Results 1 to 3 of 3

Thread: help

  1. #1

    Thread Starter
    Member
    Join Date
    Jul 2000
    Posts
    48

    Red face

    Hi there! I help doing label.caption blink a "Warning!"
    if somebody know please help with this.
    thanks!!

  2. #2
    Guest
    use a timer on your form, set the interval to 500:

    Code:
    Timer1_Timer()
    If len(label1.caption) = 0 then 
    label1.caption = "Warning!"
    else
    label1.caption = ""
    end if
    off the top of my head

  3. #3
    Guest
    Just a little bit shorter. Make a Timer, set it's Interval to 250 and put the following code into it.

    Code:
    Private Sub Timer1_Timer()
    
        Label1.Visible = Not Label1.Visible
    
    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