Hello, I want to make a 10x2 array but in each column I want to have different type of data .In the first column string type in the second bytes, is it possible to make something like that?Any ideas?
Thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello, I want to make a 10x2 array but in each column I want to have different type of data .In the first column string type in the second bytes, is it possible to make something like that?Any ideas?
Thanks
Create an array of structures.
First define the structure (type DUT) with a string and a byte.
Then declare a variable as an array of this structure.
Thanks for your reply, can you explain it a little more please...
First create the structure:
Then create an array of this structure:
You can get access to the items in the array in e.g. structured text as:
Thank you I aprreciate it so much..it's a big help for me