Some of the string functions in Word2000 VBA seem still limited to less than 64 kByte string length.
Selection.TypeText will cut off a string longer than 64kB:
Selection.TypeText String(66000, "?")
I also ran into problems trying to write a string to a file (opened in Binary mode) with Put if the string is longer than 64kB.
Are limitations like these documented somewhere (Knowledge Base)? Are they still present in Word2002?
TIA, Klaus