hi all
How do I add values to more than one column in a list?
When using the following code, the addition is done for each row, not in the column positions
FormListViewControl1.addColumn(1, new FormListColumn(/A1/,1, 150));
FormListViewControl1.addColumn(2, new FormListColumn(/A2/,2, 100));
FormListViewControl1.addColumn(3, new FormListColumn(/A3/, 3,100));
FormListViewControl1.add(/Value Column 1/,1,1);
FormListViewControl1.add(/Value Column 2/,1,2);
FormListViewControl1.add(/Value Column 3/,1,3);
Can you help me!!!!