Spell Check a Report Form

  • Thread starter Thread starter bw
  • Start date Start date
B

bw

I have a form with an unbound control, which is used to pass information to
an unbound control on a report. The form is activated by the Report On Open
event.
Is there a way to "automatically" spell check this control (and any others
that may be on the form) before passing the information to the report?

Thanks,
Bernie
 
I have a form with an unbound control, which is used to pass information to
an unbound control on a report. The form is activated by the Report On Open
event.
Is there a way to "automatically" spell check this control (and any others
that may be on the form) before passing the information to the report?

Thanks,
Bernie


I assume the Report opened this form in acDialog.

Code the click event of a Command Button on the form

DoCmd.RunCommand acCmdSpelling
Me.Visible = False

Remember to close the form in the Report's Close event.
 
Wonderful! Thanks Fred!
Bernie


fredg said:
I assume the Report opened this form in acDialog.

Code the click event of a Command Button on the form

DoCmd.RunCommand acCmdSpelling
Me.Visible = False

Remember to close the form in the Report's Close event.
 
Back
Top