Currently the below is being used for spell check on the form.
DoCmd.SetWarnings False 'turn off system warning if spell check returns no error'
DoCmd.RunCommand acCmdSpelling
DoCmd.SetWarnings True 'turn back on the system warnings'
However, there is one field on the form that is automatically filled in when it opens with "SENGINEERING" depending upon the value in another filed (this is used later for quering) and spell check keeps stoping at this field. Is there away to modify the code to skip the "SENGINEERING" field of [Rollup]?
Thank you for any and all help,
PBrown
DoCmd.SetWarnings False 'turn off system warning if spell check returns no error'
DoCmd.RunCommand acCmdSpelling
DoCmd.SetWarnings True 'turn back on the system warnings'
However, there is one field on the form that is automatically filled in when it opens with "SENGINEERING" depending upon the value in another filed (this is used later for quering) and spell check keeps stoping at this field. Is there away to modify the code to skip the "SENGINEERING" field of [Rollup]?
Thank you for any and all help,
PBrown