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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top