Skipping Records
I'm trying to skip records based on the DM0116 demo using the OnNext event
of the datapipeline but it only seems to skip the first records that meets
the criteria (boolean field = true) and does not skip any subsequent
records. Is there a better way to skip records? This is for an Avery 5160
label report. Here is the code I'm using:
If tablex.Eof then exit;
If tablexfieldx.Value = True then
pp5160.Skip;
Thanks
Bob Parrish
of the datapipeline but it only seems to skip the first records that meets
the criteria (boolean field = true) and does not skip any subsequent
records. Is there a better way to skip records? This is for an Avery 5160
label report. Here is the code I'm using:
If tablex.Eof then exit;
If tablexfieldx.Value = True then
pp5160.Skip;
Thanks
Bob Parrish
This discussion has been closed.
Comments
Bob