Spell Checker

  • Thread starter Thread starter Gilles Labelle
  • Start date Start date
G

Gilles Labelle

I have a number of forms created. If I press the F7 key
it starts spell checking. It actually goes through all
the records. For most people, this could be a good thing
but not for this application. How can I stop the spell
checker from starting??

Thanks in advance
 
Gilles Labelle said:
I have a number of forms created. If I press the F7 key
it starts spell checking. It actually goes through all
the records. For most people, this could be a good thing
but not for this application. How can I stop the spell
checker from starting??

Thanks in advance

I don't know offhand if there's a simpler way, but you could create an
AutoKeys macro for the F7 key, with no action associated with that key.
 
I do a similar thing using the on keypress event of the form
'air code'

sub onKeyPress event()

If key = vbkeyF7 then
keycode = 0
end if

end sub

hope this helps
backup before trying anything
Dave
 
Back
Top