Re: USED()



Hi Tony,

IF USED('lastid.dbf')
simple mistake, USED() is working on aliases,
not on file names.

You should only check
USED("lastid")

In principle you have a problem if you want to
find out if a table is open already, as it can be
open with an alias other than the table name.

But if you USE lastid.dbf it will open in the
current work area with alias lastid.

Bye, Olaf.

.


Loading