S
Sonny Maou
Can somebody confirm/deny this issue?
I've got a variable of length 33683 which
Selection.TypeText myVar
does not successfully print... it only prints 100 or so characters
(haven't counted exactly, and don't know which part of the string it is...).
However, if I do this:
halfway = int(len(myVar)/2)
Selection.TypeText left(myVar, halfway)
Selection.TypeText mid(myVar, halfway+1)
it prints everything fine.
Thank you!
I've got a variable of length 33683 which
Selection.TypeText myVar
does not successfully print... it only prints 100 or so characters
(haven't counted exactly, and don't know which part of the string it is...).
However, if I do this:
halfway = int(len(myVar)/2)
Selection.TypeText left(myVar, halfway)
Selection.TypeText mid(myVar, halfway+1)
it prints everything fine.
Thank you!