Menu

Flickering Indicators

Help
2011-07-19
2013-05-30
  • aaron tanquerel

    aaron tanquerel - 2011-07-19

    I've got about 70 BasicIndicators on a form using an Ethernet driver talking to a SLC5/05 which has a scanner module because its a multi-rack plc.  As i added each bank of indicators, i tested the program, and it was fine until one specific bit, made some of the other controls and itself flicker.  I've read the previous post about flicker, but i can't get rid of it.  Any thoughts?

     
  • Archie

    Archie - 2011-07-19

    Try modifying the code in the BasicIndicator like this:

        Private Sub PolledDataReturnedSelectColor2(ByVal Values() As String)
            Try
                If SelectColor2 <> Values(0) Then
                    SelectColor2 = Values(0)
                End If
            Catch
                DisplayError("INVALID SelectColor2 Value RETURNED!")
            End Try
        End Sub

     
  • aaron tanquerel

    aaron tanquerel - 2011-07-19

    ok, i'll give it a try in the morning, thanks Archie.

     
  • aaron tanquerel

    aaron tanquerel - 2011-07-20

    Tried that, unfortunately no difference.  I have narrowed it down to one register, but i need to use this one as it is.

     

Log in to post a comment.