AdvancedHMI Software

General Category => Feature Request => Topic started by: Darrell on February 15, 2017, 03:35:46 PM

Title: Basic Label highlighted blink option
Post by: Darrell on February 15, 2017, 03:35:46 PM
would be nice to have the option to blink a basic label when highlighted
Title: Re: Basic Label highlighted blink option
Post by: Phrog30 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
Title: Re: Basic Label highlighted blink option
Post by: Godra on April 14, 2017, 09:30:54 AM
You could also try using the attached modified BasicLabel.