Identying selected records from datasheet

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a subform that contains data listed in datasheet view. I would like
to select certain records and make those records availble for further action
(eg append, update, etc after a button is pressed).

I need to keep this in a datasheet view and not a list box so I can allow
the user to sort, resize columns, etc.

Thanks in advance for your help!
Kevin
 
Nevermind- I figured it out.

For anyone who's interested, I used the SelTop and SelHeight properties. On
the subform's "On Click" event, I had VB pass the first row ID (SelTop) and
number of records (SelHeight) to two text boxes on my main form. From here I
plan to use those values for my other commands.
 
Back
Top