Arrays

I have an array that pulls data from field. When I do a loop the first data does not appear. But the rest does.

1. "NOTE 1: RUN PARTS OVER GAGE (GL-446) SIDE TO SIDE AND THEN BACK TO FRONT. HOOK MATERIAL MUST NOT RELEASE FROM PART."
2. "TEST2"
3. "USE A CALIPER ON EACH END"

#2, #3 all print out...

#1 does not.

I have a feeling it has to do with special characters that is trying to be put into an array.

Shared numberVar OnRecordNo;
Shared stringVar Array strSpecNotes;
OnRecordNo := OnRecordNo + 1;
(
strSpecNotes[OnRecordNo] := CSTr({SPC.Memo1});
)
[630 byte] By [vbjohn] at [2007-11-20 9:50:49]