Printing

  • Thread starter Thread starter 3ddy
  • Start date Start date
3

3ddy

I am trying to create a report that will print depending
on the physical location of a record between 2 numbers.

What I mean is on a form, in the record navigation button,
there is a number. This is the number I want to use to
print. Is this possible at all?
 
I am trying to create a report that will print depending
on the physical location of a record between 2 numbers.

What I mean is on a form, in the record navigation button,
there is a number. This is the number I want to use to
print. Is this possible at all?

Not really. The number is a dynamic view of a changing situation; in a
multiuser database, someone could have added or deleted a dozen
records between the time you see the count on the form and print the
report.

The physical location of a Table record is arbitrary, uncontrollable,
and should be considered irrelevant.

If the Form is based on a query sorting a recordset by some criteria,
then you should be able to use those criteria to determine the
"between-ness" of the record. Could you explain the situation? There's
probably another way to do this, other than relying on physical record
locations!
 
Back
Top