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.
 

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

Back
Top