In the subform there is a field where the user needs to add a brief description. I would like to add spellcheck to this to help save time in the proofing area. I have tried this, in the main form, on the On Exit of the subform:
DoCmd.SetWarnings False
DoCmd.RunCommand acCmdSpelling
DoCmd.SetWarnings True
However, when I type ov and exit the subform, nothing happens.
Also, I attempted to use this on the subform itself on the [Description] AfterUpdate:
DoCmd.SetWarnings False
DoCmd.RunCommand acCmdSpelling
DoCmd.SetWarnings True
However, once again, nothing happened when ov was typed and I went to a different field in the subform. Here is some basic information concerning the form and subform....
Main Form = Altima
Subform Name = Altima Data
Subform Control Source = Altima subform
Field to check in subform = Description
Thank you in advance for any and all help,
PBrown
Thank you for any and all help,
PBrown
DoCmd.SetWarnings False
DoCmd.RunCommand acCmdSpelling
DoCmd.SetWarnings True
However, when I type ov and exit the subform, nothing happens.
Also, I attempted to use this on the subform itself on the [Description] AfterUpdate:
DoCmd.SetWarnings False
DoCmd.RunCommand acCmdSpelling
DoCmd.SetWarnings True
However, once again, nothing happened when ov was typed and I went to a different field in the subform. Here is some basic information concerning the form and subform....
Main Form = Altima
Subform Name = Altima Data
Subform Control Source = Altima subform
Field to check in subform = Description
Thank you in advance for any and all help,
PBrown
Thank you for any and all help,
PBrown