How to disabale Navigation.?

  • Thread starter Malik via AccessMonster.com
  • Start date
M

Malik via AccessMonster.com

Hi.

I want to disable the forms Manual Navigation.

I mean that Navigation must not move Forward or Reverse by Pressing
PageUp/PageDown, Or Mouse Wheel.

It should just Add data, Not to view data....

Thanks
 
K

Kardan via AccessMonster.com

Hi Malik

If I have your requirement correct, the form should only enable data
additions. If this is correct then you should open the form in Add mode.

This can be done in a macro by using OpenForm and setting the Data Mode
option to Add.

If you want to do this in code, use the following.

DoCmd.OpenForm "MyFormName", , , , acAdd
 
M

Malik via AccessMonster.com

Kardan said:
Hi Malik

If I have your requirement correct, the form should only enable data
additions. If this is correct then you should open the form in Add mode.


Thanks Bro

So Nice of u..
 

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