That's the traditional way to read selected records from a grid: c = CustTable_DS.getFirst(true); while (c.RecId != 0) { info(c.Name); c = CustTable_DS.getNext(); } But there's a problem with this...(read more)
↧