VBA for Word 2003 vs. XP?

T

tony_1955

In Word XP, a procedure runs smoothly for me - it checks spelling in a
selection using the following command:

Selection.Range.CheckSpelling

Now, in Word 2003 the spell-checking does not stop at the end of the
selection but runs to the end of the document (which is very annoying
for long documents,especially in the application I use it for).

According to VBA documentation it should be the same for both versions,
but...

Any ideas?

Tony [email protected]
 
H

Howard Kaikow

It's not unusual to find differences between running code in two different
versions of Word.

1. Code that appears to work in Word 2002 may actually errors that do not
get exposed until run in Word 2003.
2. Some behavior may have been changed in Word 2003.
3. There could be a bug in Word 2003 that was not in Word 2002, or vice
versa.
 
Top