Hi,
If you are coming from the Clarion world beware of the difference between Character Operators.
----------------------------------------
myString is string
FOR k=1 TO 132
myString=myString+"."
END
// Now myString has a length of 132
myString[[1 to 3]]="AAA" // Length is still 132
myString[[1 to 3]]="AA" // Length is NOW 131 !!!
-------------------------------------------
Steven Sitas
If you are coming from the Clarion world beware of the difference between Character Operators.
----------------------------------------
myString is string
FOR k=1 TO 132
myString=myString+"."
END
// Now myString has a length of 132
myString[[1 to 3]]="AAA" // Length is still 132
myString[[1 to 3]]="AA" // Length is NOW 131 !!!
-------------------------------------------
Steven Sitas