05-19-2025, 11:32 AM
cannot even change the type after using erase:
i get "name already in use" from the command line. boy i really really hate this error message. could something else be displayed instead?
the compilation try revealed above. tried to refigure a string array into an ordinary single string variable. then from a variable-length string to a fixed-length string. cannot use the same name for more than one of those items. this was enforced since quickbasic.
Code: (Select All)
redim test(1 to 10) as string
test(1) = "test me"
erase test
redim test(1 to 10) as integer
test(1) = 10000
print "That's all the test folks!"
end
the compilation try revealed above. tried to refigure a string array into an ordinary single string variable. then from a variable-length string to a fixed-length string. cannot use the same name for more than one of those items. this was enforced since quickbasic.