I want to use vba to set the form property to turn on and off the "record selectors" property

K

Kelvin Beaton

I can't come up with the statement to turn on/off "Record Selectors" on a
form.

Can someone point me in the right direction?

Thanks

Kelvin
 
F

fredg

I can't come up with the statement to turn on/off "Record Selectors" on a
form.

Can someone point me in the right direction?

Thanks

Kelvin

Me.RecordSelectors = false

This removes them from the current form, only while the current form
is still open.
 
Top