Tab Control - Make Cursor start at Record Selector

C

Cindy Lovell

Is there a way to make the cursor start at the record
selector when opening a form? I don't see anything under
tab order - that seems to be only for controls on the form.

Any help would be appreciated.

Thanks!
 
V

Van T. Dinh

Do you meant the little triangle just to the left of
(each) Record in the Detail section of the Form?

If it is, the RecordSelector is part of the container
window of the Form AFAIK, not a Control on the Form and
therefore it is not in the TabOrder.

However, try the statement:

DoCmd.RunCommand acCmdSelectRecord

in the Form_Current Event and see if the appearance is
what you want.

HTH
Van T. Dinh
MVP (Access)
 
Top