Recent content by Eccles

  1. E

    Spell Check Specific Field from a module

    Do you mean something like this? Public Function FUNC_SpellCheck() Dim ctlSpell As Control Set ctlSpell = [Forms]![MainForm]![SubForm1]![Subform2].[Form]![TextField] If TypeOf ctlSpell Is TextBox Then If IsNull(Len(ctlSpell)) Or Len(ctlSpell) = 0 Then Exit Function End If...
  2. E

    Spell Check Specific Field from a module

    Yeah the spell check command goes through and the conformation message box comes up but it seems like it doesn't recognise the words that are highlighted? I used the text "Does ths spll chck wrk" in the field and then tried both the button on the subform and on the main form. When clicked on the...
  3. E

    Spell Check Specific Field from a module

    Hi, Thank you very much for the response! I have removed the on error! When I use the debugger no errors come up. I can see the relevant text is highlighted then when the I go on to the DoCmd.RunCommand acCmdSpelling line it shows the spell check complete text box but I it doesnt actually...
  4. E

    Spell Check Specific Field from a module

    Hello, I am new to access and am currently making a data base where I have a button on a on the main form header which when clicked calls a function in a module to spell check a specific field in a subform. The code when highlights the text as it should however the DoCmd.RunCommand...
Top Bottom