Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Error: LET string1 = string1 ( 1 TO LEN string1) (solved)
#1
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.
Reply


Messages In This Thread
Error: LET string1 = string1 ( 1 TO LEN string1) (solved) - by zarsoft - 08-14-2024, 10:45 AM

Forum Jump:


Users browsing this thread: 5 Guest(s)