Search the Community
Showing results for tags 'table'.
-
Hello, I want to get a table where I put in parameter settings. On the first colum I put in the name of parameter. On the second the value of the parameter is read. Now I will not have the possibility that the name of the parameters are changed. So colum 1 read only. At colum 2 I will have the possibility to change the settings. But on the table only both colums are ready only or editable. Can somebody help me how to read out a parameterlist on the way I wanted? Thanks Leen
-
Hello, I'm using 4 Combo Box in my HMI. Each Combo Box has 4 options and the user choice is stored in a "Select_Valve" array (of type INT8). I convert the value of "Select_Valve" to binary type, and I want to open the valves one after another according to the user selection using "UID_0016 -> Outputs_0:Outputs3" I'm thinking to use FIFO table for storing the user selection and in the end pushing the results to "UID_0016 -> Outputs_0:Outputs3 ". looking for advice, is it possible to implement with just array functions? there is no help, so I don't understand how to use 'Store in Array' function... Thank You!
-
I'm working with getting names from a DT on the screen, and I got the folowing: read name from dt, row offset in string1 read name from dt, row offset +1 in string2 .... read name from dt, row offset +14 in string15 next page = offset + 15 reload. This way i can skip through the DT and show all values, but now I got a strung with 15 times almost the same code. The problem is that there isn't a array[string] with which it would be possible to make a loop. If there would be an array[string] then i could save at position [offset] and next time [offset +1], but now i need another name thereby I't isn't possible to make a loop. Any ideas?