Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - bnunes

Pages: [1]
1
Support Questions / Re: Program Scope Bool Array
« on: December 01, 2016, 07:10:55 PM »
Thank you. I will try and report back.

2
Support Questions / Program Scope Bool Array
« on: November 30, 2016, 12:36:29 PM »
Hi,

I came across a small problem while trying to access a program scoped boolean array. While I can read single booleans, DINT and INT arrays, I've not been able to read an array of booleans. But i can read perfectly a controller scope bool array.

string[] result = ethernetIPforCLXCom..Read("PROGRAM:Caminhos.test_dint[0]", 32) -> OK
string[] result = ethernetIPforCLXCom..Read("PROGRAM:Caminhos.test_int[0]", 32) -> OK
string result = ethernetIPforCLXCom..Read("PROGRAM:Caminhos.teste_bool) -> OK
string[] result = ethernetIPforCLXCom..Read("test_bools[0]", 32) -> OK
string[] result = ethernetIPforCLXCom..Read("PROGRAM:Caminhos.test_bools[0]", 32) -> NOT OK (Read Failed. General Error: Offset plus Number of Elements extends beyond the end of the requested tag.,  Status Code=255)

I've double checked tag definition, i tried different naming and lengths, and I can't see what I may be doing wrong.

Any suggestion?

Thank you in advance,

Bruno Nunes

Pages: [1]