Hi All
Ive set up a different language in MS Word to check my "Afrikaans" spelling. It works fine in Word, but when I create a simple program :
Dim w As New Word.Application
Private Sub Command1_Click()
If w.CheckSpelling(Text1.Text) Then
MsgBox "Correct Spelling"
End If
End Sub
it only uses the english dictionary and doesnt check afrikaans words.
Inside Word I have set the Afrikaans Dictionary to be the default one. I can also not use
w.language = "Afrikaans"
because it gives an error stating that I cannot change a read only property
Any help ??
Ive set up a different language in MS Word to check my "Afrikaans" spelling. It works fine in Word, but when I create a simple program :
Dim w As New Word.Application
Private Sub Command1_Click()
If w.CheckSpelling(Text1.Text) Then
MsgBox "Correct Spelling"
End If
End Sub
it only uses the english dictionary and doesnt check afrikaans words.
Inside Word I have set the Afrikaans Dictionary to be the default one. I can also not use
w.language = "Afrikaans"
because it gives an error stating that I cannot change a read only property
Any help ??