Problem hiding record selectors at bottom of a form

  • Thread starter Thread starter Keith
  • Start date Start date
K

Keith

Hello,
I created an access form. At the bottom of the form is an object (actually
a group of objects) that are used to locate a record in a table.
Unfortunately, I am not using a table for this form, and don’t need to show
the object.

I tried turning it off using…

Form.RecordSelectors = False
and
Me.RecordSelectors = False

But neither had any affect on the form display.

What do you suggest?

Keith
 
Hi Keith,

Try the Forms!MyFormName.NavigationButtons = False

to turn them off. True turns them back on.

Hope this helps,
Gordon
 
Try turning off the form's NavigationButtons.

The RecordSelector is the bar at the left of the record.
 
Hi Gillincoln
thanks very much.
Keith

gllincoln said:
Hi Keith,

Try the Forms!MyFormName.NavigationButtons = False

to turn them off. True turns them back on.

Hope this helps,
Gordon
 
Back
Top