Author Topic: Basic Label highlighted blink option  (Read 3120 times)

Darrell

  • Full Member
  • ***
  • Posts: 198
  • Electrician / PLC Technician
    • View Profile
Basic Label highlighted blink option
« on: February 15, 2017, 03:35:46 PM »
would be nice to have the option to blink a basic label when highlighted

Phrog30

  • Guest
Re: Basic Label highlighted blink option
« Reply #1 on: April 08, 2017, 04:45:55 PM »
This might not answer the question, but here is some code you can use to blink, whether it's text color, or anything else.  The below example will blink the text color between white and black.

Code: [Select]
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick

            If Me.btn_Acknowledge.ForeColor = Color.White Then
                Me.btn_Acknowledge.ForeColor = Color.Black
            Else
                Me.btn_Acknowledge.ForeColor = Color.White
            End If

    End Sub

Godra

  • Hero Member
  • *****
  • Posts: 1436
    • View Profile
Re: Basic Label highlighted blink option
« Reply #2 on: April 14, 2017, 09:30:54 AM »
You could also try using the attached modified BasicLabel.