View Single Post
 
Old 06-29-2022, 11:03 AM
Charles Kenyon Charles Kenyon is offline Windows 11 Office 2021
Moderator
 
Join Date: Mar 2012
Location: Sun Prairie, Wisconsin
Posts: 9,467
Charles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant future
Default

I do not know what code you are using from Access, but the following might be added once you are in Word...
Code:
ToolsProofing
Should activate the spell check.


If you need to use the legacy spell check dialog...
Code:
    If Application.Version < "16.0" Then
        Dialogs(wdDialogToolsSpellingAndGrammar).Show
    Else
        ActiveDocument.CheckGrammar
    End If
Classic Spell Check Dialog - Macro to use classic dialog rather than Editor
Reply With Quote