Author Topic: Reading CLogix String Array - HELP please  (Read 957 times)

damon

  • Newbie
  • *
  • Posts: 8
    • View Profile
Reading CLogix String Array - HELP please
« on: March 10, 2015, 07:45:32 PM »
This works:

        Try
            Dim plcReadTitle() As String = EthernetIPforCLXCom1.Read("OI.Title[0]", 2)
        Catch ex As Exception
            MsgBox(ex.Message)
            'Exit Sub
        End Try


This does NOT work:

        Try
            Dim plcReadTitle() As String = EthernetIPforCLXCom1.Read("OI.Title[0]", 3)
        Catch ex As Exception
            MsgBox(ex.Message)
            'Exit Sub
        End Try


damon

  • Newbie
  • *
  • Posts: 8
    • View Profile
Re: Reading CLogix String Array - HELP please
« Reply #1 on: March 10, 2015, 07:48:38 PM »
I probably should have mentioned that the only difference is that reading a string array of 2 or less works but a string of array of 3 or more does not work..

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5270
    • View Profile
    • AdvancedHMI
Re: Reading CLogix String Array - HELP please
« Reply #2 on: March 10, 2015, 08:55:23 PM »
Definitely a problem. Working on a fix.

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5270
    • View Profile
    • AdvancedHMI
Re: Reading CLogix String Array - HELP please
« Reply #3 on: March 10, 2015, 08:59:56 PM »
This is a patch for version 3.98.

- Download and extract the attached file
- Replace the file in \AdvancedHMIDrivers\Support

damon

  • Newbie
  • *
  • Posts: 8
    • View Profile
Re: Reading CLogix String Array - HELP please
« Reply #4 on: March 10, 2015, 09:27:10 PM »
Archie, you got it..

Your fast - thank you!