Finally got my DBPro today, and already having problems...My program used to compile under the trial version, now it doesn't under this retail version. It looks like the compiler gets confused when I have
constants with similar names. So, I wrote a small program to test my theory that it's not my code, but the compiler...
#constant f "test.dat"
#constant fnum 1
open to read fnum, f
close file fnum
end
When I compile it, I got the following error message:
#100001: Could not determine parameter type of '"test.dat"num' at line 3.
It doesn't matter what name I change the constant 'fnum' to, as long as it begins with an 'f', I get the same error message. Anyone has this problem, and does patch 4.1 fix it?