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?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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?
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
ok, i'll give it a try in the morning, thanks Archie.
Tried that, unfortunately no difference. I have narrowed it down to one register, but i need to use this one as it is.