How to Call to a Function (for Spell Check)

  • Thread starter Thread starter RossKK
  • Start date Start date
R

RossKK

I am trying to use a Spell Check function in a form, and have received great
information from this forum on what the code should be. However, I do not
know how to properly Call to that module/function.

Thank you!
 
Presumably you have put a function into a module. If you have done this and
declared the function as Public - eg. Public Function mySpellCheck.

All you need to do is put the code 'Call mySpellCheck' in the event you are
trying to call the code from. If it's on a button click, put the call into
the code window in the button click event.

Hope this answers your question.

Sandy
 
Back
Top