Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Acess to Tables
Message
From
18/01/2005 10:26:42
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
00978042
Message ID:
00978096
Views:
35
SNIP

Neil,

As Jon said, you don't need the SET EXCLUSIVE OFF if you specifically open the table SHARED.

In addition, change your USED test to something like this:
IF USED("UserLog")
   SELECT UserLog
ELSE
   USE UserLog IN 0 SHARED
ENDIF
UPDATE

Above code will still leave you in the wrong work area. Try this:
IF !USED("UserLog")
   USE UserLog IN 0 SHARED
ENDIF
SELECT UserLog
HTH,
Jim
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform