[ ]
Can anyone tell me what is going wrong here?
[tt][blue]
SELECT mytable
SET FILTER TO myfilter
GO 2
[/blue][/tt]
[tt][blue]
z = 2
SELECT mytable
SET FILTER TO myfilter
GO z
[/blue][/tt]
Both of the above work fine.
NONE of the following work.
[tt][blue]
SELECT mytable
SET FILTER TO myfilter
GO TOP
[/blue][/tt]
[tt][blue]
SELECT mytable
SET FILTER TO myfilter
GO BOTTOM
[/blue][/tt]
[tt][blue]
SELECT mytable
SET FILTER TO myfilter
GO BOF()
[/blue][/tt]
[tt][blue]
SELECT mytable
SET FILTER TO myfilter
GO EOF()
[/blue][/tt]
[tt][blue]
SELECT mytable
SET FILTER TO myfilter
SKIP
[/blue][/tt]
These throw error #11 "Invalid function argument value, type, or count." in the last line.
AND the FILTER is set to OFF in the same line.
In the COMMAND window they ALL work.
mmerlinn
"We've found by experience that people who are careless and sloppy writers are usually also careless and sloppy at thinking and coding. Answering questions for careless and sloppy thinkers is not rewarding." - Eric Steven Raymond
Can anyone tell me what is going wrong here?
[tt][blue]
SELECT mytable
SET FILTER TO myfilter
GO 2
[/blue][/tt]
[tt][blue]
z = 2
SELECT mytable
SET FILTER TO myfilter
GO z
[/blue][/tt]
Both of the above work fine.
NONE of the following work.
[tt][blue]
SELECT mytable
SET FILTER TO myfilter
GO TOP
[/blue][/tt]
[tt][blue]
SELECT mytable
SET FILTER TO myfilter
GO BOTTOM
[/blue][/tt]
[tt][blue]
SELECT mytable
SET FILTER TO myfilter
GO BOF()
[/blue][/tt]
[tt][blue]
SELECT mytable
SET FILTER TO myfilter
GO EOF()
[/blue][/tt]
[tt][blue]
SELECT mytable
SET FILTER TO myfilter
SKIP
[/blue][/tt]
These throw error #11 "Invalid function argument value, type, or count." in the last line.
AND the FILTER is set to OFF in the same line.
In the COMMAND window they ALL work.
mmerlinn
"We've found by experience that people who are careless and sloppy writers are usually also careless and sloppy at thinking and coding. Answering questions for careless and sloppy thinkers is not rewarding." - Eric Steven Raymond