Hey,
I was just wondering.
I can use a variable named 'aprinter' for an array
i fill it, like this:
select * from table1 into array aprinter
in the debugger i can see this variable (wich is expandable cos it has data in it)
now i want to use this data like this:
strTest = aprinter[1,1]
But foxpro complains: 'Function argument value, type or count is invalid'
but the next code works fine:
select cprinter
append from array aprinter
In the help this variable name is NOT in the reserved words
Nor is it the name of a function (according to my help)
If i change the array name to ageprint it works fine
I do know that in the older versions of vfp aprinter is a function but in version 9 is had become aprinterS
Now how come I can't use the way i want to use it
thx
Joris
PS: this code is just to illustrate the issue