RQuestion on Form Record Selector Bar

  • Thread starter Thread starter John Lane
  • Start date Start date
J

John Lane

Is ther a programmatic way to set focus to a record's Record Selector Bar on
a form, so that the user can scroll a continuous form up and down with the up
and down arrow keys and not to have to first click the bar? Thanks.
 
John Lane said:
Is ther a programmatic way to set focus to a record's Record Selector Bar
on
a form, so that the user can scroll a continuous form up and down with the
up
and down arrow keys and not to have to first click the bar? Thanks.


The same as when you click on the record selector? I believe Access looks
at this as selecting a record, not as setting focus. So this line of code
should do it:

RunCommand acCmdSelectRecord
 
Back
Top