I want to use columns in a function and the columns may differ from time to time. So I want to pass the columns into the function when calling the function, what datatype can be used in the function.
The following is the code that i want to put into the function and compute_page
is the column name:
if dw_report.Object.compute_page[ll_first_row] <> dw_report.Object.compute_page[ll_last_row] then
Also, I want to do the same thing but this time is set the column value. I tried to use SetItem(), SetText(), SetValue(), but none of the function can achieve the expected result except using dwcontrol.Object.columnname[i] to set the value.
Thanks