Retreiving values from Record Selector

R

Rauken

I have a main form and a subform which is a continous form and it presents
two fields. First field holds the unique key. I want the users to be able to
select two or more rows then click a command button which executes a method
on the selected rows. How can I retrieve the values from the selected records?
 
A

Allen Browne

You cannot use a command button on the form. As soon as focus moves to the
command button, the selection of the records is lost.

Use a toolbar button instead, and examine the SelHeight property.
 
Top