Whenever I create a TYPE that includes a string, I have to designate a length for the string, and I was wondering the reasoning for having to do this? eg.
Type Product
Catagory AS STRING ' <-- Blows chunks during compile.
Foobar AS STRING * 4096 ' <-- No problem.
END TYPE
Anyway around this?
Type Product
Catagory AS STRING ' <-- Blows chunks during compile.
Foobar AS STRING * 4096 ' <-- No problem.
END TYPE
Anyway around this?
Comment