Hi All,
I want to use the Application.CheckSpelling() method in Excel. I've implemented a user function like this:
Public Function chkspl(wrd As String) As Boolean
chkspl = Application.CheckSpelling(wrd)
End Function
The problem is it does not seem to work. Whatever input I give it, whether I explicitly enter a text string or a cell reference holding a string, it always returns FALSE even when the word being checked is perfectly valid (e.g. "table", "red" - hardly obscure words).
I'm running in XP Pro and using Office 2003.
Any suggestions?
Tony
I want to use the Application.CheckSpelling() method in Excel. I've implemented a user function like this:
Public Function chkspl(wrd As String) As Boolean
chkspl = Application.CheckSpelling(wrd)
End Function
The problem is it does not seem to work. Whatever input I give it, whether I explicitly enter a text string or a cell reference holding a string, it always returns FALSE even when the word being checked is perfectly valid (e.g. "table", "red" - hardly obscure words).
I'm running in XP Pro and using Office 2003.
Any suggestions?
Tony