In my program I had
DIM EDLINE AS STRING ' global variable
and if I wrote
EDLINE = EDLINE( TO LEN EDLINE-2)
then the test
EDLINE = ""
it didn't always work
and I had to use
LEN EDLINE = 0
Then I changed it to
aux = EDLINE( TO LEN EDLINE-2)
EDLINE = aux
and the test
EDLINE = ""
worked well.
DIM EDLINE AS STRING ' global variable
and if I wrote
EDLINE = EDLINE( TO LEN EDLINE-2)
then the test
EDLINE = ""
it didn't always work
and I had to use
LEN EDLINE = 0
Then I changed it to
aux = EDLINE( TO LEN EDLINE-2)
EDLINE = aux
and the test
EDLINE = ""
worked well.