dantheinfoman
Programmer
Hi All,
If I have opened a table previously by saying
Doesn't that mean that later on, I should be able to quickly access that table by saying
???
In this instance, instead. Is says syntax error or table number is invalid. If I say, SELECT PVSET.DBF << it gives a syntax error, if I say SELECT PVSET <<< it says the table number is invalid.
What gives?
I have proven that this table is accessible, because I put in something like this:
and it says that pvset is used.
Anyone know why it's being like this? PS I have several other tables open, but I don't think 250 or whatever the threshold is. . .
Thanks
Dan
If I have opened a table previously by saying
Code:
USE PVSET IN 0
Doesn't that mean that later on, I should be able to quickly access that table by saying
Code:
SELECT PVSET
In this instance, instead. Is says syntax error or table number is invalid. If I say, SELECT PVSET.DBF << it gives a syntax error, if I say SELECT PVSET <<< it says the table number is invalid.
What gives?
I have proven that this table is accessible, because I put in something like this:
Code:
IF !USED('pvset') then
WAIT WINDOW 'pvset is not used'
ELSE
WAIT WINDOW 'pvset is used'
ENDIF
and it says that pvset is used.
Anyone know why it's being like this? PS I have several other tables open, but I don't think 250 or whatever the threshold is. . .
Thanks
Dan