Assuming I have vRowData as WebListBoxRowData that has columns such as “m_code” and “c_code” with values “AXI” and “BNY”.
I want to obtain “AXI,BNY”.
I could use
vValue = vRowData.Value(“m_code”) + “,” + vRowData.Value(“c_code”)
For generic solution, is there a way to obtain the list of column values without specifying column names in the row and not using loop?
28 posts - 4 participants