BradCollins
Technical User
I currently have the following code in the AfterUpdate() event of my form
Of course this works fine and does exactly what it should, what I would like to know is if it is possible to have the same spell check function (or another function) run but in a limited mode.
Currently when the spell check runs it opens the normal spell check screen and this allows the user access to the 'Options' menu.
I want to be able to block the user from getting to that 'options' menu if possible, I have already removed it from the ribbon, is this possible ?
Thanks for your help
Code:
DoCmd.SetWarnings False
DoCmd.RunCommand acCmdSpelling
DoCmd.SetWarnings True
Of course this works fine and does exactly what it should, what I would like to know is if it is possible to have the same spell check function (or another function) run but in a limited mode.
Currently when the spell check runs it opens the normal spell check screen and this allows the user access to the 'Options' menu.
I want to be able to block the user from getting to that 'options' menu if possible, I have already removed it from the ribbon, is this possible ?
Thanks for your help