How to hide Navigation Buttons

S

schroetter

How can I hide the navigation buttons on a form from Visual Basic (I
know how to do it from the properties dialog).

Also, is there a reference somewhere for all of these type of commands
that you can customize in VB that are typically done on the properties
window?

Thanks -
 
F

fredg

How can I hide the navigation buttons on a form from Visual Basic (I
know how to do it from the properties dialog).

Also, is there a reference somewhere for all of these type of commands
that you can customize in VB that are typically done on the properties
window?

Thanks -

Me.NavigationButtons = false
 
R

Rick Brandt

How can I hide the navigation buttons on a form from Visual Basic (I
know how to do it from the properties dialog).

Also, is there a reference somewhere for all of these type of commands
that you can customize in VB that are typically done on the properties
window?

Put your cursor in the desired box of the property sheet and then press F1.
The help topic for each property will indicate whether the field can be
manipulated from VBA and if so, how to do it.
 

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

Top