Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Form to exclude certain Navigation

Status
Not open for further replies.

azzi2000

MIS
Jan 28, 2004
145
US
I have a form that I included my own navigation button.
top, previous,..., Add, delete,...
I like the Access default Navigation but I would like to restrict some of them. such as the add navigation defaulted by Access.
I am aware of the property the allow addition, but if set to no I will not be able to add new records.
Please advice,
Dré
 
Hi
You could set allow additions to false, then add a button for adding records that sets allow additions to true. This might give you more control.
 
Actually this is what I had in mind, (and it makes sense), however what is the programming control to set it up
me.form.addition = true....
Please advice,
Thank you.
Dré
 
Hi
On your form:
Me.AllowAdditions = False
Me.AllowAdditions = True
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top