I have a lot of question.
I have a table build up like this:
TITLE1 TITLE2 TITLE3 TITLE4 TITLE5 TITLE6
VAL1 VAL2 VAL3 .....
i built this table manually and i have a question.
1) There's a way to create a table dynamically? (For example i read the dataset and i built up the table by for cycles? this because i can have more than 100 o 200 parameters)
like:
for (i=0, i<dataset.lenght, i++)
new row(...);
2) i have to read cell values of this table, they can be of different values. if the value is 1, 2, 3 i have to write in che cell "OK", "error","standby", for example..
How can i do this?
i read the GetCurrentColumnValue functions but i'm so sad i don't understand it :(
Someone of you can explain me how to read the entire table, and decide if there are different cells value to write different messages in the same cell of the table?
Thanks in advance