02-04-2018 11:33 AM
Hello, i have another problems.
1) Can I run method using other method? (using the command)
2) I need to write name of buffer from table to another table, when the number in Reěuirement is increased by 1.
The second table should look like this:
Name
Buffer2
Buffer
Buffer3
Buffer2
Buffer
Buffer3
Buffer2
.
.
.
02-05-2018 02:50 AM
Since the name of the buffer is in column 0 (row index) I recommend
var n:integer := TableFile.yDimIndex + 1
TableFile[0,n] := "Buffer"
02-05-2018 05:31 AM
You can trigger methods from within methods. Just type its path (or only name, when it is in the same frame).
02-05-2018 05:03 PM