Results 1 to 4 of 4
  1. #1
    stateofjustin is offline Novice
    Windows XP Access 2003
    Join Date
    Sep 2010
    Posts
    18

    Question Spellcheck works in MSA2k3, but only partially in MSA2k3 Runtime

    The code to run the spell check in this application works in the full version of Access but only partially works in the runtime.

    When you mistype a simple word (ex. this as tihs), MS Word's auto-correct steps in and fixes it automatically. When you deliberately mistype a word that is not in the simple AC list, the word remains misspelled.

    I gather that is what is supposed to happen until the 'Spell Check' button is pressed, at which point you should be offered replacement choices for each spelling error that is found. At the point you press the 'Spell Check' button though, nothing happens.



    I've done a bit of research, however the 'spell check' code seems to be correct.

    Anyone have any troubleshooting ideas?

  2. #2
    stateofjustin is offline Novice
    Windows XP Access 2003
    Join Date
    Sep 2010
    Posts
    18
    Code:

    ****
    Private Sub cmdSpell_Click()
    splchk = True
    If Me.AllowEdits = False Then
    MsgBox "You must activate the Edit function before spell checking the form.", vbInformation
    Exit Sub
    Else
    RunCommand acCmdSelectRecord
    RunCommand acCmdSpelling
    End If
    splchk = False

    End Sub
    ****

    Shouldn't they be using 'DoCmd.RunCommand acCmdSpelling' ?

  3. #3
    stateofjustin is offline Novice
    Windows XP Access 2003
    Join Date
    Sep 2010
    Posts
    18
    (crickets chirping)

  4. #4
    stateofjustin is offline Novice
    Windows XP Access 2003
    Join Date
    Sep 2010
    Posts
    18

    Arrow

    (toads croaking)

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Code works in full, fails in Runtime
    By stephenaa5 in forum Programming
    Replies: 3
    Last Post: 09-14-2010, 12:30 PM
  2. Replies: 2
    Last Post: 06-14-2010, 09:38 PM
  3. Replies: 11
    Last Post: 04-04-2010, 07:42 AM
  4. Ensuring Everything Works...?
    By catat in forum Access
    Replies: 1
    Last Post: 03-31-2010, 01:44 PM
  5. Import from MS Works
    By jerald in forum Import/Export Data
    Replies: 0
    Last Post: 03-17-2009, 08:00 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums