[email protected] wrote: > Knowing the row number how does one get a cell's value from the parent > (dColumn) class?
grid.getValue(row=3, col=2) Or, since you know the row number and you have a reference to the column object: grid = colObj.Parent row_num = 2 print grid.getValue(row=row_num, col=colObj.ColumnIndex) Paul _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
