static int countMarkedRecordsDS(FormDataSource _fDS) { Common common; int countRecords; ; for (common = _fDS.getFirst(true) ? _fDS.getFirst(true) : _fDS.cursor(); common; common = _fDS.getNext()) { countRecords++; } return countRecords; }