Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / VB6

Spell checking in Microsoft Access 2003 applications

4.85/5 (22 votes)
22 Sep 2012CPOL 31.8K   274  
An easy way to do spell checking in Microsoft Access 2003 applications.

Introduction

Here is an easy way to do spell checking in an MS Access 2003 application.

Background

For various automation type applications, Microsoft Access is widely used for database and user interface design. In this article, I would like to show you how to do spell checking in Microsoft Access 2003 applications.

Using the code

This is a very simple way. I just use the acCmdSpelling command. The command performs spell checking on the currently focused text control. A code example is given below:

VB
Private Sub btnSpellChecker_Click()
On Error GoTo Err:
    
    With Me.txtMessage
    .SetFocus
        If Len(.Text & vbNullString) > 0 Then
            .SelStart = 0
            .SelLength = Len(.Text)
            DoCmd.RunCommand acCmdSpelling
        End If
    End With
    
Exit Sub

Err:
    'Err.Raise Err.Number, Err.Source, Err.Description
     MsgBox Err.Description
End Sub

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)