I am fairly new to access and in particular VBA. So I've been working on setting up a spell checker for a specific memo field in a form using a button. Here is the code
Private Sub Spellcheck_click()
With Me!Description
If Len(.value) >0 Then
DoCmd.SetWarnings False
.SetFocus...