J
John Bennett
I have a VB6 appplictaion that includes the following to do a spell check
using Word:
Dim SpellCheck As Object
Set SpellCheck = CreateObject("Word.Application")
SpellCheck.Visible = False
SpellCheck.Documents.add
SpellCheck.ActiveDocument.Select
SpellCheck.ActiveDocument.CheckSpelling
When I run using with Office Professional Word 2003 SP2 all works fine.
But I have someone who runs using the Student Edition of Word 2003 SP2 and
they always get runtime error 91 object not set error.
I have not been able to trace through but could this result simply because
the Student edition is being used?
using Word:
Dim SpellCheck As Object
Set SpellCheck = CreateObject("Word.Application")
SpellCheck.Visible = False
SpellCheck.Documents.add
SpellCheck.ActiveDocument.Select
SpellCheck.ActiveDocument.CheckSpelling
When I run using with Office Professional Word 2003 SP2 all works fine.
But I have someone who runs using the Student Edition of Word 2003 SP2 and
they always get runtime error 91 object not set error.
I have not been able to trace through but could this result simply because
the Student edition is being used?