ADP2002 selected records

P

Pavel Fursov

Hello All!

I've been trying to enumerate selected form records in a continuous or
Datasheet view form.
I'm using SelTop, SelHeight and RecordsetClone.
If no sort/filter set then record number confirms row number.
Else recordset record number <> form grid row. Because sort/filter don't
changes base form recordset!

How to determine which form row are recordset record?

Thanks,
Pavel
 
T

TC

As you probably know, this will position the recordsetclone to the current
record of the form:

me.recordsetclone.bookmark = me.bookmark

Then, me.recordsetclone.absoluteposition gives the ordinal number (0, 1, 2
etc.) of that record, within the whole recordset.

Does that help?

TC
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top