1
Support Questions / Re: Boolean Array
« on: March 15, 2015, 02:36:15 PM »
Works great..
Try
Dim plcReadAlarms() As String = EthernetIPforCLXCom1.Read("OI.Strings[0]", 224)
Catch ex As Exception
MsgBox(ex.Message)
'Exit Sub
End Try
various slight modifications like Dim plcReadAlarms() as Boolean or even leaving it a string array to read a bool array do not work.
Anyone have working code to read to a boolean array?
Try
Dim plcReadAlarms() As String = EthernetIPforCLXCom1.Read("OI.Strings[0]", 224)
Catch ex As Exception
MsgBox(ex.Message)
'Exit Sub
End Try
various slight modifications like Dim plcReadAlarms() as Boolean or even leaving it a string array to read a bool array do not work.
Anyone have working code to read to a boolean array?